﻿.logout-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

    .logout-modal.show {
        display: flex;
    }

.logout-card {
    width: 360px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
    animation: scaleIn .25s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.logout-header {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
    padding: 15px;
    text-align: center;
}

    .logout-header i {
        font-size: 26px;
        margin-bottom: 5px;
        display: block;
    }

.logout-body {
    padding: 20px;
    text-align: center;
    font-size: 15px;
    color: #555;
}

.logout-footer {
    padding: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    background: #f8f9fa;
}
