/**
 * 관리자 스타일
 * DOLSTEP Nutrition - Admin Styles
 */

/* 관리자 설정 버튼 */
#admin-settings-btn button,
#mobile-admin-btn {
    transition: all 0.2s ease;
}

#admin-settings-btn button:hover {
    color: #ffc107 !important;
    transform: rotate(90deg);
}

#mobile-admin-btn:hover {
    background-color: #495057;
    border-color: #495057;
    color: white;
}

/* 관리자 인증 모달 */
#adminAuthModal .modal-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

#adminAuthModal .modal-title {
    font-weight: 600;
}

#adminAuthModal .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#adminAuthModal .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

#adminAuthModal .btn-primary {
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

#adminAuthModal .btn-secondary {
    border-radius: 8px;
}

/* reCAPTCHA 컨테이너 */
#admin-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

#admin-recaptcha > div {
    transform: scale(0.95);
    transform-origin: center;
}

/* 인증 오류 메시지 */
#adminAuthError {
    border-radius: 8px;
    font-size: 0.875rem;
}

/* 반응형 */
@media (max-width: 576px) {
    #admin-recaptcha > div {
        transform: scale(0.85);
    }

    #adminAuthModal .modal-body {
        padding: 1rem;
    }
}
