    /* General form styling */
    body {
        margin: 0;
        padding: 0;
        /* height: 100vh; */
        /* background: linear-gradient(135deg, #023189, #CDCACA); */
        background: linear-gradient(to bottom right, #023189 40%, #CDCACA);
        background-repeat: no-repeat;
        background-size: cover;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Poppins', sans-serif;
        overflow-y: auto;
    }

    /* Tooltip Styles */
    [data-title] {
        position: relative;
        cursor: pointer;
    }

    [data-title]::after {
        content: attr(data-title);
        position: absolute;
        background: rgba(0, 0, 0, 0.82);
        color: #fff;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 10px;
        font-weight: normal;
        white-space: nowrap;
        width: max-content;
        text-align: center;
        top: 110%;
        left: 40%;
        transform: translateX(-60%);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out;
        z-index: 1;
    }

    .role[data-title]::after {
        top: 60%;
        left: 50%;
        transform: translateX(-50%);
    }

    [data-title]:hover::after {
        opacity: 1;
        visibility: visible;
    }

    .form-container,
    .container {
        background: rgba(255, 255, 255, 0.9);
        background-attachment: fixed;
        padding: 40px 30px 30px;
        padding-top: 0px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(2, 49, 137, 0.3);
        margin: 40px auto;
        margin-top: 50px;
        width: 100%;
        max-width: 500px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: transform 0.3s ease;
        text-align: center;
        animation: fadeIn 0.8s ease;
    }

    .container {
        padding: 30px 40px;
        border-radius: 16px;
        /* backdrop-filter: blur(8px); */
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        max-width: 900px;
        margin: auto;
        color: #023189;
        text-align: left;
    }


    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .icon-wrapper {
        font-size: 2.7rem;
        color: #023189;
        margin-bottom: 10px;
        text-shadow: 9px 9px 9px rgba(0, 0, 0, 0.25);
    }

    li {
        color: #000;
    }

    li i {
        color: #023189;
    }


    .form-container h2,
    .form-container h3 {
        color: #023189;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
        font-size: 40px;
    }

    .form-container h3 {
        font-size: 35px;
        font-weight: 600;
    }

    .form-container p {
        color: #3a3a3a;
        font-size: 1rem;
        margin-bottom: 20px;
        font-weight: 400;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    form {
        max-width: 600px;
        margin: 0px auto;
        padding: 20px;
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        text-align: left;

        background-color: rgba(255, 255, 255, 0.95);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 400px;
    }

    form:has(.logout-btn) {
        background: transparent;
        box-shadow: none;
        border: none;
        padding-top: 15px;
    }


    form p {
        text-align: left;
    }

    /* Form fields */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea,
    select {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 16px;
        box-sizing: border-box;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) inset;
        transition: border 0.3s;
    }

    /* Focus state for fields */
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    textarea:focus,
    select:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

    /* Submit button */
    /* button[type="submit"], */
    .del-btn,
    .btn {
        /* background: linear-gradient(135deg, #023189, #CDCACA); */
        /* background: linear-gradient(to bottom right, #023189 40%, #CDCACA);    color: #fff; */
        /* background: linear-gradient(135deg, #cdcacab7, #023189); */
        background: linear-gradient(135deg, #023189, #1a46a0);
        color: white;
        border: none;
        padding: 10px;
        font-weight: 600;
        border-radius: 4px;
        transition: background 0.3s ease;
        width: 100%;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* button[type="submit"]:hover, */
    .del-btn:hover,
    .btn:hover {
        background: linear-gradient(135deg, #1a46a0, #023189);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }


    .del-btn {
        /* background: linear-gradient(135deg, #023189, #CDCACA); */
        /* background: linear-gradient(to bottom right, #023189 40%, #CDCACA);    color: #fff; */
        /* background: linear-gradient(135deg, #cdcacab7, #023189); */
        background: linear-gradient(135deg, #b31217, #e52d27);
    }

    .del-btn:hover {
        background: linear-gradient(135deg, #e52d27, #b31217);
    }

    #deleteModal .btn,
    #deleteModal .fas,
    #deleteModal .icon-wrapper {
        cursor: pointer;
    }

    .view-business-btn {
        border: 1px solid #023189;
        background: #fff;
        color: #023189;
        padding: 5px 5px;
        font-size: 14px;
        width: 100%;
    }

    /* Labels */
    label {
        margin-bottom: 5px;
        display: block;
        color: #333;
        font-weight: 600;
    }

    /* Textarea */
    textarea {
        resize: vertical;
        min-height: 100px;
    }

    .forgot-password {
        color: #1a46a0;
    }

    .forgot-password:hover {
        color: #023189;
    }


    th {
        font-size: 16px;
    }

    td {
        font-size: 14px;
        padding: 10px;
        padding-bottom: 0px;
        border-bottom: 1px solid #ddd;
        color: #333;
        font-weight: 400;
        vertical-align: middle;
        text-align: center;
        height: 60px;
    }

    td input[type="checkbox"] {
        margin-top: 5px;
    }

    td .btn-light,
    td .bg-transparent {
        margin-top: 5px;

    }

    .bulk-actions {
        position: fixed;
        bottom: 0;
        right: 7%;
        min-width: 75%;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: transform 0.3s ease;
        animation: fadeIn 0.1s ease;
    }

    #page-info {
        white-space: nowrap;
        color: #000;
    }

    .tag-select {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;

    }

    .tag-item {
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }

    .tag-item input[type="checkbox"] {
        display: none;
    }

    .tag-item label {
        display: inline-block;
        padding: 5px 10px;
        border: 2px solid #1a46a0;
        border-radius: 25px;
        background-color: white;
        color: #1a46a0;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .tag-item input[type="checkbox"]:checked+label {
        background-color: #1a46a0;
        color: white;
    }

    #approveModal h3 {
        color: #1e7e34;
    }

    #rejectModal h3 {
        color: #b31217;
    }

    .success-btn {
        background: linear-gradient(135deg, #1e7e34, #218838);
        transition: all 0.3s ease;
    }

    .success-btn:hover {
        background: linear-gradient(135deg, #218838, #1e7e34);
        transform: translateY(-1px);
    }


    #approveModal .icon-wrapper i {
        color: #1e7e34;
        font-size: 2.8rem;
    }

    .modal .icon-wrapper i {
        font-size: 2.8rem;
    }

    #rejectModal .icon-wrapper i {
        color: #b31217;
        font-size: 2.8rem;
    }

    .error {
        font-size: 0.8rem;
    }


    @media(max-width: 992px) {

        .logout-btn {
            white-space: nowrap;
        }

        .form-container h2,
        .content h2,
        .text h1,
        .text-content h2 {
            font-size: clamp(30px, 2vw, 35px);
            white-space: wrap;
        }

        .form-container h3 {
            font-size: clamp(25px, 2vw, 30px);
        }

        .filter-buttons {
            flex-wrap: wrap;
        }

        .filter-buttons .btn {
            white-space: wrap;
            max-width: fit-content;
        }

        label.form-label {
            font-size: clamp(14px, 2vw, 16px);
        }

        .btn-container .btn.btn-primary {
            white-space: nowrap;
            font-size: clamp(10px, 2vw, 14px);
        }

        .table th {
            font-size: clamp(14px, 2vw, 16px);
            white-space: nowrap;
        }

        .table td,
        .table td .btn {
            font-size: clamp(12px, 2vw, 14px);
            white-space: nowrap;
        }

        .bulk-actions div:first-of-type button {
            margin-left: -25%;
        }

        /* .bulk-actions #page-info{
            margin-right: 25px;
        } */

    }


    @media(max-width: 529px) {

        .content h2,
        .text-content h1 {
            font-size: clamp(30px, 2vw, 35px);
            white-space: wrap;
        }

        .bulk-actions button,
        .bulk-actions #page-info {
            font-size: clamp(12px, 2vw, 14px);
        }

        .bulk-actions div:first-of-type button {
            margin-left: -14%;
        }
    }

    .select-wrapper {
        position: relative;
    }

    .location-dropdown {
        padding-left: 2.2rem;
    }

    .select-wrapper::before {
        content: '\f3c5';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #424141;
        pointer-events: none;
    }
