﻿/* Modal content styling */
.logoutModalContent {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modal header (no background now) */
/*.modal-header {
    background-color: transparent;*/ /* removed dark green */
    /*color: #333;*/ /* dark text */
    /*border-bottom: none;
    padding: 20px !important;
}*/

/* Modal title */
.logutTitle {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

/* Modal body */
.logout-modal-body {
    padding: 20px;
    font-size: 16px;
    color: #333;
}

.logoutText {
    margin: 0;
}

/* Modal footer */
.logout-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: none;
}

    /* Cancel button (simple black text, no background) */
    .logout-modal-footer .custom-btn.btn-secondary {
        background-color: transparent;
        color: #000;
        border: none;
        box-shadow: none;
        font-weight: 500;
    }

        .logout-modal-footer .custom-btn.btn-secondary:hover {
            background-color: #f2f2f2;
        }

/* Logout button (dark green background) */
.custom-btn-logout {
    background-color: #145A32;
    color: white;
    border: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap; 
    line-height: 1;
    min-width: 100px; 
    text-align: center;
}


    .custom-btn-logout:hover {
        background-color: #0e3e23; /* Slightly darker on hover */
    }

/* Ensure modal background is transparent */
/* CSS */
.logout-modal.modal {
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
}

.modal-header {
    background-color: transparent; /* removed dark green */
    color: #333; /* dark text */
    border-bottom: none;
    padding: 20px !important;
}