/* ===== PAGE ===== */

body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    padding:40px;
}

/* ===== LOGIN BUTTON ===== */

.login-btn{
    padding:12px 20px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:black;
    color:white;
    font-size:15px;
    transition:0.3s;
}

.login-btn:hover{
    opacity:0.9;
}

/* ===== PROFILE ===== */

.profile-dropdown{
    position:relative;
    display:inline-block;
}

.profile-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid #ddd;
}

/* ===== DROPDOWN ===== */

.dropdown-menu{
    display:none;
    position:absolute;
    right:0;
    top:50px;
    background:white;
    min-width:180px;
    box-shadow:0px 5px 15px rgba(0,0,0,0.2);
    border-radius:10px;
    overflow:hidden;
    z-index:999;
}

.dropdown-menu a{
    display:block;
    padding:12px;
    text-decoration:none;
    color:black;
}

.dropdown-menu a:hover{
    background:#f2f2f2;
}

/* ===== MODAL ===== */

.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
}

/* ===== MODAL CONTENT ===== */

.modal-content{
    background:white;
    width:320px;
    padding:25px;
    border-radius:16px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    animation:popup 0.2s ease;
}

@keyframes popup{
    from{
        transform:translate(-50%, -45%);
        opacity:0;
    }
    to{
        transform:translate(-50%, -50%);
        opacity:1;
    }
}

.modal-title{
    margin-bottom:20px;
    font-size:22px;
    font-weight:bold;
}

/* ===== LOGIN OPTIONS ===== */

.login-option{
    display:block;
    width:100%;
    padding:12px;
    margin-bottom:12px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    transition:0.3s;
}

.google-btn{
    background:#4285F4;
    color:white;
}

.google-btn:hover{
    background:#357ae8;
}

.email-btn{
    background:#eeeeee;
}

.email-btn:hover{
    background:#dddddd;
}

/* ===== CLOSE BUTTON ===== */

.close-btn{
    margin-top:10px;
    cursor:pointer;
    color:#666;
    font-size:14px;
}

.close-btn:hover{
    color:black;
}