﻿.logout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

    .logout-modal-overlay.show {
        opacity: 1;
    }

.logout-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 26px 24px;
    width: 320px;
    max-width: 90vw;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(-10px) scale(0.96);
    transition: transform 0.2s ease;
}

.logout-modal-overlay.show .logout-modal-box {
    transform: translateY(0) scale(1);
}

.logout-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e6f4f4;
    color: #0d6e6e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
}

.logout-modal-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.logout-modal-box p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.4;
}

.logout-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

    .logout-modal-actions .kt-btn-outline {
        border-radius: 8px;
        font-weight: 500;
    }

    .logout-modal-actions .kt-btn-danger {
        background: #0d6e6e;
        color: #fff;
        border: 1px solid #0d6e6e;
        border-radius: 8px;
        font-weight: 600;
    }

        .logout-modal-actions .kt-btn-danger:hover {
            background: #0a5757;
            border-color: #0a5757;
        }

        .logout-modal-actions .kt-btn-danger:disabled {
            opacity: 0.7;
            cursor: default;
        }
