/* Social Login Buttons */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.google-btn {
    background: white;
    color: #3c4043;
    border: 1px solid #dadce0;
}

.google-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.kakao-btn {
    background: #FEE500;
    color: #191919;
    border: none;
}

.kakao-btn:hover {
    background: #FADA00;
}

/* Global Search Popup */
.search-status-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.search-section {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.search-section:last-child {
    border-bottom: none;
}

.section-label {
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-item {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-item:hover {
    background: #f8fafc;
}

.item-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.item-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
}