/* ========== 로그인 모달 ========== */
#loginModal .modal-content {
    max-width: 400px;
}

.login-form-group {
    margin-bottom: 15px;
}

.login-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.login-form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.login-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ========== 로그인 섹션 ========== */
.login-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 15px 20px;
    border-bottom: 2px solid #e0e0e0;
    margin: 10px;
    border-radius: 10px;
}

.login-info-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.login-info {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.login-buttons {
    display: flex;
    gap: 10px;
}

.login-btn, .logout-btn {
    padding: 8px 16px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.9);
    color: #333;
}

.login-btn:hover, .logout-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.logout-btn {
    background: #f44336;
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.logout-btn:hover {
    background: #d32f2f;
}