/* MudBlazor 커스텀 스타일 */

/* MudBlazor 테마 커스터마이징 */
.mud-theme-provider {
  --mud-palette-primary: #3b82f6;
  --mud-palette-primary-darken: #1d4ed8;
  --mud-palette-secondary: #6b7280;
  --mud-palette-error: #ef4444;
  --mud-palette-warning: #f59e0b;
  --mud-palette-info: #3b82f6;
  --mud-palette-success: #10b981;
}

/* 헤더 드롭다운 메뉴 스타일 고정 */
.header-dropdown {
  position: absolute !important;
  right: 0 !important;
  top: 100% !important;
  margin-top: 0.5rem !important;
  background: white !important;
  border-radius: 0.5rem !important;
  border: 1px solid #e5e7eb !important;
  width: 200px !important;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
}

/* MudBlazor가 다른 요소에 영향을 주지 않도록 격리 */
.mud-theme-provider {
  isolation: isolate;
}

/* 헤더 영역 보호 */
.header-section {
  position: relative;
  z-index: 1000;
}
