/* Estilos para sistema de autenticación */

/* Auth Container */
.auth-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.auth-buttons button {
    background: #3282b8;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin: 0 5px;
}

.auth-buttons button:hover { background: #0f4c75; }

/* User Menu */
.user-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

#user-email {
    font-weight: bold;
    color: #3282b8;
}

.level-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: bold;
    color: white;
}

.user-stats {
    display: flex;
    gap: 15px;
    font-size: 0.85em;
    color: #ccc;
}

.user-actions {
    display: flex;
    gap: 8px;
}

.user-actions button {
    background: #0f4c75;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85em;
}

.user-actions button:hover { background: #3282b8; }
.btn-referrals { background: #ffd93d !important; color: #000 !important; }

/* Modales */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #16213e;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-large { max-width: 800px; }

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover { color: #fff; }
