.logout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logout-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.logout-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logout-modal-overlay.show .logout-modal {
    transform: scale(1) translateY(0);
}

.logout-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.logout-modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.logout-modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.logout-modal-message {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.logout-modal-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.logout-modal-button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
}

.logout-modal-button.cancel {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logout-modal-button.cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.logout-modal-button.confirm {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.logout-modal-button.confirm:hover {
    background: linear-gradient(135deg, #ff3742 0%, #ff2833 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 71, 87, 0.3);
}

.logout-modal-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .logout-modal {
        padding: 24px;
        max-width: 320px;
    }
    
    .logout-modal-icon {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .logout-modal-title {
        font-size: 20px;
    }
    
    .logout-modal-message {
        font-size: 14px;
    }
    
    .logout-modal-actions {
        gap: 12px;
        margin-top: 24px;
    }
    
    .logout-modal-button {
        padding: 10px 18px;
        font-size: 14px;
    }
}