body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
}

/* Optional: make headings slightly bold */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

/* Table header bold */
table th {
    font-weight: 500;
}
body {
            background-color: #ffffff;
        }
        .category-card {
            border: 2px solid #eee;
            border-radius: 15px;
            padding: 15px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
            font-weight: 500;
        }

        .category-card:hover {
            border-color: #999;
        }

        .category-card.active {
            border-color: #0071BB;
            background-color: #deeeff;
        }

        .hidden-checkbox {
            display: none;
        }

        .submit-btn {
            padding: 12px 40px;
            border-radius: 12px;
        }
                /* Custom switch for In-Transit checkbox */
          .form-switch-custom {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 25px;
          }
          .form-switch-custom input {
            opacity: 0;
            width: 0;
            height: 0;
          }
          .form-switch-custom .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 25px;
          }
          .form-switch-custom .slider::before {
            position: absolute;
            content: "";
            height: 21px;
            width: 21px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
          }
          .form-switch-custom input:checked + .slider {
            background-color: #dc3545;
          }
          .form-switch-custom input:checked + .slider::before {
            transform: translateX(25px);
          }
          #pageLoader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.8);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader-content {
            text-align: center;
        }
