.page-header{
    display: none;
}
.custom-vcar {
    width: 100% !important;
    height: auto !important;
}

.custom-vcar img {
    object-fit: cover !important;
    width: 100% !important;
    height: 228px !important;
    display: block !important;
    margin: auto !important;
}

.vrcmodcarsgridboxdiv {
    width: 100%;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff !important;
    transition: none !important;
}

.vrcmodcarsgridview a {
    background: #000 !important;
    color: #fff;
    padding: 15px !important;
    width: 70%;
    display: block;
    margin: auto;
    text-align: center;
}

.vrcmodcarsgrid-box-cost {
    text-align: left !important;
}

.vrcmodcarsgridboxdiv:hover {
    -ms-transform: none !important;
    -webkit-transform: none!important;
    transform: none !important;
    outline: 3px solid #000;
    outline-offset: 2px;
    transition: all 4ms ease-in-out 0s !important;
    background: #fff !important;
    cursor: pointer;
}

@media (max-width: 768px) {
    .custom-vcar img {
        height: 180px !important;
    }

    .vrcmodcarsgridview a {
        padding: 10px !important;
        width: 80%;
    }
}

@media (max-width: 480px) {
    .custom-vcar img {
        height: 150px !important;
    }

    .vrcmodcarsgridview a {
        padding: 8px !important;
        width: 90%;
    }

    .vrcmodcarsgridboxdiv {
        padding: 10px;
    }

    .vrcmodcarsgrid-box-cost {
        text-align: center !important;
    }
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th, .responsive-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.responsive-table th {
    background-color: #f4f4f4;
}

@media (max-width: 768px) {
    .responsive-table th, .responsive-table td {
        font-size: 14px;
        padding: 6px 8px;
    }

    .responsive-table, .responsive-table thead, .responsive-table tbody, .responsive-table th, .responsive-table td, .responsive-table tr {
        display: block;
    }

    .responsive-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .responsive-table tr {
        border: 1px solid #ddd;
        margin-bottom: 10px;
    }

    .responsive-table td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }

    .responsive-table td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: calc(50% - 12px);
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }

    .responsive-table td:nth-of-type(1):before { content: "Nom(s) & Prénom(s)"; }
    .responsive-table td:nth-of-type(2):before { content: "Email"; }
    .responsive-table td:nth-of-type(3):before { content: "Nom d'utilisateur"; }
    .responsive-table td:nth-of-type(4):before { content: "Numéro de téléphone"; }
    .responsive-table td:nth-of-type(5):before { content: "Pays de résidence"; }
    .responsive-table td:nth-of-type(6):before { content: "Détails"; }
}

.list-customer-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: black !important;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.list-customer-btn:hover {
    background-color: white !important;
    color: black !important;
    border: 1px solid black !important;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a:hover {
    background-color: white;
    color: black;
}

.pagination span {
    background-color: #555;
    color: #fff;
    font-weight: bold;
    pointer-events: none;
}

.pagination a {
    border: 1px solid #fff;
}

.pagination a:hover {
    background-color: white;
    color: black;
    border-color: black;
}

@media (max-width: 768px) {
    .pagination a, .pagination span {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination a, .pagination span {
        padding: 6px 10px;
        font-size: 12px;
    }
}

.custom-profile-notification {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.custom-profile-notification.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.custom-profile-notification.success::before {
    content: "✓";
    font-weight: bold;
    margin-right: 10px;
    color: #3c763d;
}
/* Overlay styling for modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden; /* Prevent scrolling of the page */
}

/* Modal container */
.modal-wrapper {
    background-color: #fff;
    padding: 20px;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: fixed;
    overflow-y: auto;
    max-height: 80vh;
    top: 50%; /* Position it in the center vertically */
    left: 50%; /* Position it in the center horizontally */
    transform: translate(-50%, -50%); /* Center it using transform */
}

/* Close button style */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Form styling */
.profile-form-container h3 {
    text-align: center;
    color: #444;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 500;
}

.form-row {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-row label {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #333;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="file"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.form-row input[type="file"] {
    padding: 8px;
}

/* Submit button */
.submit-btn {
    background-color: #070707;
    color: white;
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #070707;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-wrapper {
        width: 90%;
        padding: 15px;
    }

    .close-btn {
        top: 8px;
        right: 15px;
        font-size: 20px;
    }

    .profile-form-container h3 {
        font-size: 1.3rem;
    }

    .form-row label {
        font-size: 0.9rem;
    }

    .form-row input[type="text"],
    .form-row input[type="email"] {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-wrapper {
        padding: 10px;
    }

    .profile-form-container h3 {
        font-size: 1.2rem;
    }

    .close-btn {
        top: 5px;
        right: 10px;
        font-size: 18px;
    }
}

.restriction-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    text-align: center;
    padding: 20px;
}

body .restriction-message i {
    color: #070707 !important;
    margin-bottom: 15px;
}

.restriction-message p {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .restriction-message p {
        font-size: 1.2rem;
    }

    .restriction-message i {
        font-size: 2.5rem;
    }
}
.um a.um-button, .um a.um-button.um-disabled:active, .um a.um-button.um-disabled:focus, .um a.um-button.um-disabled:hover, .um input[type=submit].um-button, .um input[type=submit].um-button:focus {
    background: #000000 !important;
}
.picker__box, .picker__nav--next:hover, .picker__nav--prev:hover, .um .um-field-group-head, .um .um-members-pagi span.current, .um .um-members-pagi span.current:hover, .um .um-profile-nav-item.active a, .um .um-profile-nav-item.active a:hover, .um-modal-btn, .um-modal-btn.disabled, .um-modal-btn.disabled:hover, .um-modal-header, .upload, div.uimob800 .um-account-side li a.current, div.uimob800 .um-account-side li a.current:hover {
    background: #000000 !important;
}


