/* Minimalist Account Information Styles */

/* Account Welcome Section - Minimalist */
.account-welcome {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

/* Account Info Block - Minimalist */
.account-info-block {
    margin-bottom: 15px; /* Reduced margin to decrease gap */
}

.user-info {
    text-align: center;
}

.username {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.login-time {
    color: #cccccc;
    font-size: 0.85rem;
    margin-bottom: 6px;
    opacity: 0.8;
}

.user-points {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 107, 107, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.account-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-my-account {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.btn-my-account:hover {
    background: rgba(255, 68, 68, 0.2);
    border-color: rgba(255, 68, 68, 0.5);
    transform: translateY(-1px);
}

.btn-logout {
    background: rgba(255, 255, 255, 0.05);
    color: #cccccc;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-welcome {
        padding: 16px;
    }
    
    .username {
        font-size: 1.1rem;
    }
    
    .user-points {
        font-size: 0.9rem;
        padding: 4px 10px;
    }
    
    .btn-my-account,
    .btn-logout {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
} 