﻿.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-popup {
    background: #fff;
    width: 360px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    animation: popupFade 0.3s ease;
}

    .login-popup h4 {
        margin-bottom: 10px;
        color: #333;
    }

    .login-popup p {
        font-size: 14px;
        color: #666;
    }

.popup-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn-login {
    background: #17a2b8;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-cancel {
    background: #ddd;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
