/* General Styles */
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  h1, h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-top: 40px;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px;
  }
  
  .navbar a:hover {
    text-decoration: underline;
  }
  
  /* Button Styles */
  button {
    display: block;
    margin: 20px auto;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #45a049;
  }
  
  /* List Styles */
  ul {
    list-style: none;
    padding: 0;
  }
  
  ul li {
    background: #fff;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }
  
  ul li a:hover {
    color: #4CAF50;
  }
  
  /* Form Styles */
  form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }
  
  form label {
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  form input {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  form input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }
  
  /* Custom Field Styles */
  .custom-field {
    margin: 15px 0;
    padding: 10px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .custom-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .custom-field span {
    display: block;
    font-size: 14px;
    color: #555;
  }
  
  /* Assignee List */
  #assigneesContainer li {
    padding: 8px;
    border-bottom: 1px solid #ddd;
  }
  
  #assigneesContainer li:last-child {
    border-bottom: none;
  }
  
  .dashboard-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
  }
  
  .metric-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
  }
  
  .metric-card h2 {
    color: #333;
    font-size: 18px;
  }
  
  .metric-card p {
    font-size: 24px;
    font-weight: bold;
    color: #4caf50;
  }
  