  * {
          transition: all 0.03s ease-in-out;
  }
    body {
      font-family: 'Noto Sans Thai', sans-serif;
      background-color: #ECEFF1;
    }
    /* Reduce card spacing and card height, center content vertically */
    #list {
      display: flex;
      flex-direction: column;
      gap: 0.5rem; /* minimal vertical spacing between cards */
    }
    .card {
      margin-bottom: 0 !important;
      padding: 0.25rem 0.5rem;
      height: 3.5rem;
      min-height: 3.5rem;
      max-height: 3.5rem;
      display: flex;
      align-items: stretch;
    }
    .card-body {
      padding: 0.5rem 1rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .form-select {
      height: 2.2rem;
      padding-top: 0.2rem;
      padding-bottom: 0.2rem;
      font-size: 1rem;
    }
    @media (max-width: 576px) {
      .card-body {
        padding: 0.25rem 0.5rem;
        font-size: 0.97rem;
      }
      .form-select {
        font-size: 0.97rem;
      }
    }
  .feedback-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #0d6efd;
    color: white;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    text-align: center;
    transition: background-color 0.2s;
    cursor: pointer;
    position: fixed;
  }

  .feedback-button:hover {
    background-color: #0b5ed7;
    color: white;
    text-decoration: none;
  }

  .feedback-button[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50px;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.85rem;
    margin-bottom: 8px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s;
    z-index: 1051;
  }

  .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
  }  
  [data-bs-theme="dark"] body {
    background-color: #121212 !important;
    color: #e0e0e0;
  }

  [data-bs-theme="dark"] .card {
    background-color: #1f1f1f;
    color: #ffffff;
  }

  [data-bs-theme="dark"] .card .form-select {
    background-color: #2a2a2a;
    color: #ffffff;
    border-color: #444;
  }

  [data-bs-theme="dark"] .work-box {
    background-color: #1f1f1f;
    color: #ffffff;
  }

  [data-bs-theme="dark"] .form-select:focus {
    border-color: #666;
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.1);
  }