/**
 * Icons.module.css - 통일된 아이콘 색상 시스템
 * 
 * 색상 규칙:
 * - 기본: 회색 (#9E9E9E)
 * - 호버: 오렌지 (#FF6B00)
 * - 포커스: 기존 포커스 색상
 * - 오렌지 배경: 흰색 (부모에서 설정)
 */

/* ============================================================ */
/* 기본 아이콘 스타일 */
/* ============================================================ */

._icon_1vrgu_15 {
  display: inline-block;
  /* globals.css에서 transition-smooth와 flex-shrink-0 유틸리티 사용 가능 */
}

/* 상호작용 가능한 아이콘 */
._interactive_1vrgu_21 {
  cursor: pointer;
}

/* 호버 효과: 오렌지색으로 변경 */
._interactive_1vrgu_21:hover {
  --icon-stroke-color: var(--color-brand-primary, #ff6b00);
  transform: scale(1.05);
}

/* 색상 오버라이드 클래스들 - 필요시에만 사용 */
._primary_1vrgu_32 {
  --icon-stroke-color: var(--color-brand-primary, #ff6b00) !important;
}

._secondary_1vrgu_36 {
  --icon-stroke-color: var(--color-text-secondary, #9e9e9e) !important;
}

._success_1vrgu_40 {
  --icon-stroke-color: var(--color-success, #10b981) !important;
}

._danger_1vrgu_44 {
  --icon-stroke-color: var(--color-danger, #ef4444) !important;
}

._warning_1vrgu_48 {
  --icon-stroke-color: var(--color-warning, #f59e0b) !important;
}

/* 포커스 효과는 globals.css의 *:focus-visible에서 자동 적용됨 */
._interactive_1vrgu_21:focus-visible {
  border-radius: 2px;
}

/* ============================================================ */
/* 접근성 개선 */
/* ============================================================ */

/* 고대비 모드 지원 */
@media (prefers-contrast: high) {
  ._icon_1vrgu_15 {
    filter: contrast(1.2);
  }
}

/* 모션 감소 설정 지원 */
@media (prefers-reduced-motion: reduce) {
  ._icon_1vrgu_15 {
    transition: none;
  }

  ._interactive_1vrgu_21:hover {
    transform: none;
  }
}
._button_r727i_1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);

  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  box-sizing: border-box;

  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;

  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-sm);
  line-height: 24px;

  min-height: var(--menu-size-sm);
  position: relative;
}

._button_r727i_1:focus-visible {
  outline: 2px solid var(--color-border-focus);
  outline-offset: 2px;
}

._small_r727i_31 {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-xs);
  line-height: 18px;
  min-height: 24px;
}

._medium_r727i_38 {
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-sm);
  line-height: 24px;
  min-height: var(--menu-size-sm);
}

._large_r727i_45 {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  line-height: 28px;
  min-height: 40px;
}

._primary_r727i_52 {
  background-color: var(--color-brand-primary);
  color: var(--color-text-inverse);
  box-shadow: 0px 8px 12px 0px inset #ff9b52;
  /* 버튼 내부 아이콘도 흰색으로 설정 - 명시적으로 흰색 지정 */
  --icon-stroke-color: #ffffff;
  --color-text-inverse: #ffffff;
}

._primary_r727i_52:hover:not(:disabled) {
  background-color: var(--color-background-primary);
  color: var(--color-brand-primary);
  border: 1px solid var(--color-brand-primary);
  box-shadow: none;
  /* 호버 시 아이콘도 오렌지로 변경 */
  --icon-stroke-color: var(--color-brand-primary);
}

._primary_r727i_52:active {
  background-color: #cc5100;
}

._primary_r727i_52:focus-visible {
  outline-color: var(--color-border-focus);
}

._secondary_r727i_78 {
  background-color: var(--color-neutral-100);
  color: var(--color-text-primary);
  border: 1px solid #ebebeb;
  /* 버튼 내부 아이콘은 기본 회색 */
  --icon-stroke-color: var(--color-text-secondary, #9e9e9e);
}

._secondary_r727i_78:hover:not(:disabled) {
  background-color: #ebebeb;
  /* 호버 시 아이콘도 오렌지로 변경 */
  --icon-stroke-color: var(--color-brand-primary, #ff6b00);
}

._secondary_r727i_78:active {
  background-color: var(--color-neutral-300);
}

._outline_r727i_96 {
  background-color: var(--color-background-primary);
  color: var(--color-brand-primary);
  border: 1px solid var(--color-brand-primary);
  /* 버튼 내부 아이콘도 오렌지로 설정 */
  --icon-stroke-color: var(--color-brand-primary);
}

._outline_r727i_96:hover:not(:disabled) {
  background-color: var(--color-brand-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-brand-primary);
  box-shadow: 0px 8px 12px 0px inset #ff9b52;
  /* 호버 시 아이콘도 흰색으로 변경 */
  --icon-stroke-color: var(--color-text-inverse);
}

._outline_r727i_96:active {
  background-color: #e55a00;
  border-color: #e55a00;
  box-shadow: 0px 8px 12px 0px inset #ff9b52;
}

._ghost_r727i_119 {
  background-color: transparent;
  color: var(--color-text-secondary);
  /* 버튼 내부 아이콘은 기본 회색 */
  --icon-stroke-color: var(--color-text-secondary, #9e9e9e);
}

._ghost_r727i_119:hover:not(:disabled) {
  background-color: var(--color-neutral-100);
  color: var(--color-text-primary);
  /* 호버 시 아이콘도 오렌지로 변경 */
  --icon-stroke-color: var(--color-brand-primary, #ff6b00);
}

._ghost_r727i_119:active {
  background-color: #ebebeb;
}

._disabled_r727i_137 {
  background-color: #ebebeb !important;
  color: #c7c7c7 !important;
  border-color: #ebebeb !important;
  cursor: not-allowed;
}

._loading_r727i_144 {
  cursor: not-allowed;
  position: relative;
}

._loading_r727i_144::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: inherit;
}

._fullWidth_r727i_160 {
  width: 100%;
}

._spinner_r727i_164 {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: _spin_r727i_164 1s linear infinite;
}

@keyframes _spin_r727i_164 {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   액션 타입 variants (자동 아이콘 + 스타일)
   ============================================ */

/* 저장 버튼 */
._save_r727i_184 {
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  color: #3c3c3c;
  --icon-stroke-color: #3c3c3c;
}

._save_r727i_184:hover:not(:disabled) {
  background: #ffffff;
  border-color: var(--color-brand-primary);
  color: var(--color-brand-primary);
  --icon-stroke-color: var(--color-brand-primary);
}

._save_r727i_184:active {
  background: #f0f0f0;
}

/* 취소 버튼 */
._cancel_r727i_204 {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  color: #666666;
  --icon-stroke-color: #666666;
}

._cancel_r727i_204:hover:not(:disabled) {
  background: #f8f8f8;
  border-color: #b0b0b0;
  color: #333333;
}

._cancel_r727i_204:active {
  background: #eeeeee;
}

/* 제출 버튼 (파란색) */
._submit_r727i_222 {
  background: #ffffff;
  border: 1px solid #183ee6;
  color: #183ee6;
  --icon-stroke-color: #183ee6;
}

._submit_r727i_222:hover:not(:disabled) {
  background: #f0f5ff;
  border-color: #1534c4;
  color: #1534c4;
}

._submit_r727i_222:active {
  background: #e6edff;
}

/* 업로드 버튼 (초록색) */
._upload_r727i_240 {
  background: #ffffff;
  border: 1px solid #3acb2d;
  color: #3acb2d;
  --icon-stroke-color: #3acb2d;
}

._upload_r727i_240:hover:not(:disabled) {
  background: #f0fff0;
  border-color: #2eb621;
  color: #2eb621;
}

._upload_r727i_240:active {
  background: #e6ffe6;
}

/* 다운로드 버튼 */
._download_r727i_258 {
  background: #ffffff;
  border: 1px solid #8b5cf6;
  color: #8b5cf6;
  --icon-stroke-color: #8b5cf6;
}

._download_r727i_258:hover:not(:disabled) {
  background: #f5f3ff;
  border-color: #7c3aed;
  color: #7c3aed;
}

._download_r727i_258:active {
  background: #ede9fe;
}

/* 삭제 버튼 (빨간색) */
._delete_r727i_276 {
  background: #ffffff;
  border: 1px solid #ef4444;
  color: #ef4444;
  --icon-stroke-color: #ef4444;
  --icon-delete-color: #ef4444;
}

._delete_r727i_276:hover:not(:disabled) {
  background: #fef2f2;
  border-color: #dc2626;
  color: #dc2626;
  --icon-delete-color: #dc2626;
}

._delete_r727i_276:active {
  background: #fee2e2;
}

/* 수정 버튼 */
._edit_r727i_296 {
  background: #ffffff;
  border: 1px solid #f59e0b;
  color: #f59e0b;
  --icon-stroke-color: #f59e0b;
}

._edit_r727i_296:hover:not(:disabled) {
  background: #fffbeb;
  border-color: #d97706;
  color: #d97706;
}

._edit_r727i_296:active {
  background: #fef3c7;
}
._iconButton_z7o69_1 {
  inline-size: 34px;
  block-size: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 0;
  box-sizing: border-box;
}

._iconButton_z7o69_1:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

._ghost_z7o69_21 {
  background: transparent;
}

._ghost_z7o69_21:not(:disabled):hover {
  background: var(--color-background-300, #f0f0f0);
}

._solid_z7o69_29 {
  background: var(--color-background-400, #f3f4f6);
}

._solid_z7o69_29:not(:disabled):hover {
  background: var(--color-background-300, #f0f0f0);
}

._active_z7o69_37 {
  background: var(--color-brand-main, #ff6b00);
  color: #fff;
  box-shadow: 0 8px 12px rgba(255, 155, 82, 0.5) inset, 0 2px 8px rgba(255, 107, 0, 0.4);
  border: 1px solid #fff;
}

._size-sm_z7o69_44 {
  inline-size: 28px;
  block-size: 28px;
}

._size-lg_z7o69_49 {
  inline-size: 40px;
  block-size: 40px;
  border-radius: 12px;
}
/**
 * Pagination 컴포넌트 (Figma 디자인 기반)
 * - Pretendard Bold 11px 타이포그래피
 * - 28px 고정 높이 버튼
 * - #D9D9D9 보더 컬러
 * - SVG 네비게이션 아이콘
 * - 향상된 기능: 페이지 크기 변경, 전체 항목 수 표시
 */

._paginationWrapper_15w78_10 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'Pretendard', sans-serif;
  min-height: 28px;
}

._paginationContainer_15w78_19 {
  display: flex;
  align-items: center;
  gap: 3px;
}

/* 네비게이션 버튼 (첫/이전/다음/마지막 페이지) */
._navButton_15w78_26 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 0.15s ease;
}

._navButton_15w78_26:hover:not(._disabled_15w78_39) {
  border-color: #ff6b00;
  background-color: #fff5f0;
}

._navButton_15w78_26._disabled_15w78_39 {
  opacity: 0.4;
  cursor: not-allowed;
  color: #cccccc;
}

._navButton_15w78_26 svg {
  color: inherit;
}

/* 페이지 번호 버튼 */
._pageButton_15w78_55 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  cursor: pointer;
  transition: all 0.15s ease;
}

._pageButton_15w78_55:hover:not(._active_15w78_74) {
  border-color: #ff6b00;
  background-color: #fff5f0;
  color: #ff6b00;
}

._pageButton_15w78_55._active_15w78_74 {
  border-color: #ff6b00;
  background-color: #ff6b00;
  color: #ffffff;
}

/* 빠른 점프 */
._quickJumper_15w78_87 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

._jumpInput_15w78_97 {
  width: 50px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  transition: border-color 0.15s ease;
}

._jumpInput_15w78_97:hover {
  border-color: #ff6b00;
}

._jumpInput_15w78_97:focus {
  outline: none;
  border-color: #ff6b00;
}

._jumpButton_15w78_121 {
  height: 28px;
  padding: 0 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333333;
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

._jumpButton_15w78_121:hover {
  border-color: #ff6b00;
  background-color: #fff5f0;
  color: #ff6b00;
}
/**
 * Table 컴포넌트 스타일
 * 회사 고유 디자인 시스템 적용
 */

._container_b2sb0_6 {
  padding: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  min-height: 500px;
  position: relative;
}

._table_b2sb0_15 {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  table-layout: fixed;
}

._thead_b2sb0_25 {
  background-color: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  height: 40px;
}

._thead_b2sb0_25 tr {
  height: 40px;
}

._th_b2sb0_25 {
  padding: 0 10px;
  text-align: left;
  color: var(--color-foreground-400, #5f5f5f);
  /* typography/body/xxsb */
  font-family: 'Pretendard', sans-serif !important;
  font-size: 11px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 18px !important;
  border: none;
  cursor: default;
  user-select: none;
  height: 40px;
  box-sizing: border-box;
  white-space: nowrap;
  vertical-align: middle;
}

._th_b2sb0_25:first-child {
  padding-left: 20px;
}

._th_b2sb0_25:last-child {
  padding-right: 20px;
}

/* 테이블 헤더 호버 효과 제거 */
._th_b2sb0_25:hover {
  background-color: transparent;
}

._center_b2sb0_67 {
  text-align: center;
}

._right_b2sb0_71 {
  text-align: right;
}

/* 기본 정렬 아이콘 제거 - Figma 커스텀 아이콘 사용 */
._sortable_b2sb0_76::after,
._sortAsc_b2sb0_77::after,
._sortDesc_b2sb0_78::after {
  display: none;
}

._tbody_b2sb0_82 {
  background-color: #ffffff;
}

._tr_b2sb0_86 {
  cursor: default;
  transition: background-color 0.15s ease;
  height: 50px;
}

/* 호버 시 배경색과 텍스트 색상 변경 - 피그마 디자인 기준 */
._tr_b2sb0_86:hover {
  background-color: #f8f8f8;
  /* CSS 변수를 사용하여 각 셀에서 개별적으로 호버 색상 적용 */
  --hover-project-name-color: #ff6b00;
  --hover-client-color: #183ee6;
  --hover-department-color: #ff6b00;
  --hover-date-amount-color: #3c3c3c;
}

._td_b2sb0_102 {
  padding: 0 10px;
  font-family: 'Pretendard', sans-serif !important;
  font-size: 11px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 50px !important;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  height: 50px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-height: 50px;
  vertical-align: middle;
}

._td_b2sb0_102:first-child {
  padding-left: 20px;
}

._td_b2sb0_102:last-child {
  padding-right: 20px;
}

._alignLeft_b2sb0_128 {
  text-align: left;
}

._alignCenter_b2sb0_132 {
  text-align: center;
}

._alignRight_b2sb0_136 {
  text-align: right;
}

._loading_b2sb0_140 {
  min-height: 200px;
  position: relative;
}

._loadingOverlay_b2sb0_145 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
  pointer-events: none;
}

._loadingSpinner_b2sb0_156 {
  width: 32px;
  height: 32px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-top-color: #ff6b00;
  border-radius: 50%;
  animation: _tableLoadingSpin_b2sb0_1 1s linear infinite;
}

@keyframes _tableLoadingSpin_b2sb0_1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

._empty_b2sb0_174 {
  padding: 40px;
  text-align: center;
  color: #9ca3af;
}
/**
 * TableCells 스타일시트
 * 재사용 가능한 테이블 셀 컴포넌트들의 스타일 정의
 */

/* ============= Base Styles ============= */

._textCell_7u8ko_8 {
  color: var(--color-text-secondary, #666666);
  font-size: 14px;
  line-height: 1.5;
}

._emptyCell_7u8ko_14 {
  color: var(--color-text-disabled, #999999);
  font-size: 14px;
}

/* ============= Project Cells ============= */

/* 1. 컨테이너 */
._projectNumberContainer_7u8ko_22 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 2px;
  opacity: 0.88;
  height: 100%;
}

/* 2. 왼쪽 영역 */
._projectNumberLeft_7u8ko_33 {
  display: flex;
  width: 75px;
  height: 24px;
  padding: 7px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1.002px solid var(--color-foreground-100, #d9d9d9);
  background: var(--color-background-100, #fff);
  box-sizing: border-box;
}

/* 3. 오른쪽 영역 */
._projectNumberRight_7u8ko_49 {
  display: flex;
  width: 5px;
  height: 24px;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

._projectNumberText_7u8ko_59 {
  color: var(--color-brand-main, #ff6b00);
  text-align: center;
  /* typography/body/xsb */
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  white-space: nowrap;
}

/* 변동 표시 빨간 점 */
._changedIndicator_7u8ko_72 {
  flex-shrink: 0;
  display: block;
}

._projectNameCell_7u8ko_77 {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding-left: 10px;
}

._projectNameText_7u8ko_84 {
  color: var(--hover-project-name-color, var(--color-foreground-500, #3c3c3c));
  /* typography/body/xsb */
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  transition: color 0.2s ease;
}

/* 호버 transition 효과 제거 (Table.module.css에서 처리) */

/* ============= Entity Cells ============= */

._entityCell_7u8ko_103 {
  color: var(--color-foreground-300, #9e9e9e);
  /* typography/body/xsb */
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  transition: color 0.2s ease;
}

/* 고객사 셀의 호버 색상 */
[data-cell='client'] {
  color: var(--hover-client-color, var(--color-foreground-300, #9e9e9e));
}

/* 주관부서 셀의 호버 색상 */
[data-cell='department'] {
  color: var(--hover-department-color, var(--color-foreground-300, #9e9e9e));
}

/* ============= Date Cells ============= */

._dateCell_7u8ko_126 {
  color: var(--hover-date-amount-color, var(--color-foreground-300, #9e9e9e));
  /* typography/body/xsb */
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* ============= User Cells ============= */

._userCell_7u8ko_140 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
}

._userAvatar_7u8ko_147 {
  width: 38px !important;
  height: 38px !important;
  border-radius: 6.6px;
  object-fit: cover;
  flex-shrink: 0;
}

._userInfo_7u8ko_155 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
}

._userName_7u8ko_163 {
  color: var(--color-foreground-500, #3c3c3c);
  /* typography/body/xsb */
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

._userTitle_7u8ko_176 {
  color: var(--color-foreground-300, #9e9e9e);
  font-family: Pretendard;
  font-size: 12.022px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.034px; /* 150% */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============= Amount Cells ============= */

._amountCell_7u8ko_190 {
  color: var(--hover-date-amount-color, var(--color-foreground-300, #9e9e9e));
  /* typography/body/xsb */
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  font-variant-numeric: tabular-nums;
  text-align: right;
  display: inline-block;
  width: 100%;
  transition: color 0.2s ease;
}

._percentCell_7u8ko_205 {
  color: var(--hover-date-amount-color, var(--color-foreground-300, #9e9e9e));
  /* typography/body/xsb */
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
  font-variant-numeric: tabular-nums;
  text-align: center;
  display: inline-block;
  width: 100%;
  transition: color 0.2s ease;
}

/* ============= Status Cells ============= */

._statusCell_7u8ko_222 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  width: 100%;
}

/* ============= Badge Cells ============= */

._badgeCell_7u8ko_233 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}

/* Badge Colors - Filled */
._badge-filled_7u8ko_246._badge-primary_7u8ko_246 {
  background-color: var(--color-brand-primary, #ff6b00);
  color: white;
}

._badge-filled_7u8ko_246._badge-secondary_7u8ko_251 {
  background-color: var(--color-secondary, #666666);
  color: white;
}

._badge-filled_7u8ko_246._badge-success_7u8ko_256 {
  background-color: var(--color-success, #4caf50);
  color: white;
}

._badge-filled_7u8ko_246._badge-warning_7u8ko_261 {
  background-color: var(--color-warning, #ffc107);
  color: #333333;
}

._badge-filled_7u8ko_246._badge-danger_7u8ko_266 {
  background-color: var(--color-danger, #f44336);
  color: white;
}

._badge-filled_7u8ko_246._badge-info_7u8ko_271 {
  background-color: var(--color-info, #2196f3);
  color: white;
}

/* Badge Colors - Outlined */
._badge-outlined_7u8ko_277._badge-primary_7u8ko_246 {
  background-color: transparent;
  border: 1px solid var(--color-brand-primary, #ff6b00);
  color: var(--color-brand-primary, #ff6b00);
}

._badge-outlined_7u8ko_277._badge-secondary_7u8ko_251 {
  background-color: transparent;
  border: 1px solid var(--color-secondary, #666666);
  color: var(--color-secondary, #666666);
}

._badge-outlined_7u8ko_277._badge-success_7u8ko_256 {
  background-color: transparent;
  border: 1px solid var(--color-success, #4caf50);
  color: var(--color-success, #4caf50);
}

._badge-outlined_7u8ko_277._badge-warning_7u8ko_261 {
  background-color: transparent;
  border: 1px solid var(--color-warning, #ffc107);
  color: var(--color-warning, #ffc107);
}

._badge-outlined_7u8ko_277._badge-danger_7u8ko_266 {
  background-color: transparent;
  border: 1px solid var(--color-danger, #f44336);
  color: var(--color-danger, #f44336);
}

._badge-outlined_7u8ko_277._badge-info_7u8ko_271 {
  background-color: transparent;
  border: 1px solid var(--color-info, #2196f3);
  color: var(--color-info, #2196f3);
}

/* ============= Responsive ============= */

@media (max-width: 768px) {
  ._userCell_7u8ko_140 {
    min-height: 36px;
  }

  ._userAvatar_7u8ko_147 {
    width: 32px !important;
    height: 32px !important;
  }

  ._userName_7u8ko_163 {
    font-size: 13px;
  }

  ._userTitle_7u8ko_176 {
    font-size: 11px;
  }

  ._badgeCell_7u8ko_233 {
    font-size: 11px;
    padding: 1px 6px;
  }
}
._container_tbs8y_1 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

._fullWidth_tbs8y_7 {
  width: 100%;
}

/* fullWidth가 적용된 컨테이너 내부의 modal variant input */
._fullWidth_tbs8y_7 ._modal_tbs8y_12 {
  width: 100%;
}

._label_tbs8y_16 {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #374151;
  margin-bottom: var(--spacing-xs);
}

._required_tbs8y_23 {
  color: #dc2626;
  margin-left: 2px;
}

._inputWrapper_tbs8y_28 {
  position: relative;
  display: flex;
  align-items: center;
}

._input_tbs8y_28 {
  width: 100%;
  border-radius: var(--spacing-xs);
  border: 1px solid #d1d5db;
  font-size: var(--font-size-sm);
  font-family: inherit;
  transition: all 0.15s ease;
  outline: none;
}

._input_tbs8y_28::placeholder {
  color: #9ca3af;
}

._input_tbs8y_28:focus {
  border-color: var(--input-focus-border-color, var(--color-brand-primary));
  box-shadow: var(--input-focus-box-shadow, 0 0 0 3px rgba(255, 107, 0, 0.1));
}

._input_tbs8y_28:disabled {
  background-color: #f9fafb;
  color: #9ca3af;
  cursor: not-allowed;
}

._input_tbs8y_28:read-only {
  background-color: #f8f8f8;
  cursor: default;
}

._input_tbs8y_28:read-only:focus {
  background-color: #f8f8f8;
  border-color: #d1d5db;
  box-shadow: none;
}

._small_tbs8y_70 {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: var(--font-size-xs);
  min-height: 32px;
}

._medium_tbs8y_76 {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-sm);
  min-height: 36px;
}

._large_tbs8y_82 {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: var(--font-size-base);
  min-height: 44px;
}

._outlined_tbs8y_88 {
  background-color: var(--color-background-primary);
}

._filled_tbs8y_92 {
  background-color: #f9fafb;
  border: 1px solid transparent;
}

._filled_tbs8y_92:focus {
  background-color: var(--color-background-primary);
  border-color: var(--color-brand-primary);
}

._search_tbs8y_102 {
  background-color: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family-primary);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  color: #9e9e9e;
  padding: var(--spacing-sm) var(--spacing-lg);
  min-height: 34px;
  box-sizing: border-box;
}

._search_tbs8y_102::placeholder {
  color: #9e9e9e;
  font-family: var(--font-family-primary);
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}

._search_tbs8y_102:focus {
  background-color: var(--color-background-primary);
  border-color: #d9d9d9;
  box-shadow: none;
  outline: none;
}

._search_tbs8y_102:focus::placeholder {
  color: transparent;
}

._search_tbs8y_102._hasEndIcon_tbs8y_135 {
  padding-right: 42px;
}

/* Modal variant - Figma 디자인 기반 */
._modal_tbs8y_12 {
  background: #f8f8f8;
  border: 1px solid #c8c8c8;
  border-radius: 20px;
  width: 210px;
  height: 16px;
  padding: 8px 16px;
  font-family:
    'Pretendard',
    -apple-system,
    sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  color: #5f5f5f;
  box-sizing: border-box;
}

._modal_tbs8y_12::placeholder {
  color: #9e9e9e;
  font-family:
    'Pretendard',
    -apple-system,
    sans-serif;
  font-size: 12px;
  font-weight: 700;
}

._modal_tbs8y_12:focus {
  background: #ffffff;
  border-color: #c8c8c8;
  box-shadow: none;
  outline: none;
}

._modal_tbs8y_12._hasEndIcon_tbs8y_135 {
  padding-right: 42px;
}

._modal_tbs8y_12:read-only {
  background: #f0f0f0;
  cursor: default;
}

._modal_tbs8y_12:read-only:focus {
  background: #f0f0f0;
  border-color: #c8c8c8;
}

/* Modal variant의 endIcon 위치 조정 */
._endIconModal_tbs8y_191 {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #c8c8c8;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

._hasStartIcon_tbs8y_209 {
  padding-left: 36px;
}

._hasEndIcon_tbs8y_135 {
  padding-right: 42px;
}

._startIcon_tbs8y_217 {
  position: absolute;
  left: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
  z-index: 1;
}

._endIcon_tbs8y_191 {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

._error_tbs8y_245 {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

._error_tbs8y_245:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

._helperText_tbs8y_255 {
  font-size: var(--font-size-xs);
  color: #6b7280;
  margin-top: 2px;
}

._errorText_tbs8y_261 {
  font-size: var(--font-size-xs);
  color: #dc2626;
  margin-top: 2px;
}
/**
 * Modal 컴포넌트 스타일
 * 회사 고유 디자인 시스템 적용
 */

/* 백드롭 */
._backdrop_eaw3t_7 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 16px;
}

/* 모달 */
._modal_eaw3t_22 {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 32px);
  overflow: hidden;
  animation: _modalAppear_eaw3t_1 0.2s ease-out;
}

@keyframes _modalAppear_eaw3t_1 {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* 크기 변형 */
._small_eaw3t_47,
._medium_eaw3t_48,
._large_eaw3t_49 {
  max-width: calc(100vw - 32px);
}

._small_eaw3t_47 {
  width: 400px;
}

._medium_eaw3t_48 {
  width: 600px;
}

._large_eaw3t_49 {
  width: 800px;
}

._fullscreen_eaw3t_65 {
  width: calc(100vw - 32px);
  height: calc(100vh - 32px);
}

/* 헤더 */
._header_eaw3t_71 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}

._title_eaw3t_80 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

._closeButton_eaw3t_87 {
  background: none;
  border: none;
  font-size: 24px;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.15s ease;
}

._closeButton_eaw3t_87:hover {
  background-color: #f3f4f6;
  color: #374151;
}

._closeButton_eaw3t_87:focus {
  outline: 2px solid #ff6b00;
  outline-offset: 2px;
}

/* 내용 */
._content_eaw3t_114 {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

/* 액션 버튼 영역 */
._actions_eaw3t_121 {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* 반응형 */
@media (max-width: 640px) {
  ._backdrop_eaw3t_7 {
    padding: 8px;
  }

  ._modal_eaw3t_22 {
    width: calc(100vw - 16px) !important;
    max-width: none;
  }

  ._header_eaw3t_71,
  ._content_eaw3t_114,
  ._actions_eaw3t_121 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
/**
 * 제네릭 검색 가능한 선택 모달 스타일
 * - 고객사/PM/부서 모달에서 공통으로 사용
 */

/* CSS 변수: 행 높이 및 border 두께 */
:root {
  --selection-row-height: 48px;
  --selection-row-border: 1px;
}

/* 모달 오버레이 & 컨테이너 */
._modalOverlay_30luo_13 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

._modalContainer_30luo_24 {
  width: 100%;
  max-width: 410px;
}

._modal_30luo_13 {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #d9d9d9;
  padding: 16px 0;
  width: 100%;
}

/* 헤더 */
._header_30luo_39 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-bottom: 8px;
}

._title_30luo_47 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #3c3c3c;
  margin: 0;
}

._titleExtra_30luo_56 {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* 안내문구 영역 */
._noticeSection_30luo_63 {
  display: flex;
  width: 100%;
  height: 42px;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border-top: 1px solid #f3f4f6;
}

/* 검색 영역 */
._searchSection_30luo_75 {
  background: #f8f8f8;
  border-top: 1px solid #f3f4f6;
  padding: 12px 20px;
  margin-bottom: 0;
}

._searchWrapper_30luo_82 {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 8px 16px;
  height: 34px;
}

._searchInput_30luo_93 {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #3c3c3c;
}

._searchInput_30luo_93:focus {
  outline: none;
}

._searchInput_30luo_93::placeholder {
  color: #9e9e9e;
}

._searchWrapper_30luo_82:focus-within {
  border-color: #d9d9d9;
  background: #ffffff;
}

._searchIcon_30luo_118 {
  width: 16px;
  height: 16px;
  color: #9e9e9e;
  margin-left: 8px;
}

/* 아이템 목록: itemsPerPage에 따라 동적 높이 (inline style로 설정), 스크롤바 숨김 */
._itemList_30luo_126 {
  /* height는 컴포넌트에서 itemsPerPage 기반으로 inline style 설정 */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

._itemList_30luo_126::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

._itemRow_30luo_138 {
  background: #ffffff;
  border-bottom: var(--selection-row-border) solid #f3f4f6;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  min-height: calc(var(--selection-row-height) - var(--selection-row-border));
}

._itemRow_30luo_138:last-child {
  border-bottom: none;
}

._itemRow_30luo_138:hover,
._itemRow_30luo_138._selected_30luo_152 {
  background: #fafafa;
}

/* 로딩 & 빈 데이터 메시지 */
._loadingMessage_30luo_157,
._noDataMessage_30luo_158 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #9e9e9e;
}

/* 페이지네이션 */
._pagination_30luo_170 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 16px;
  min-height: 50px;
  border-top: 1px solid #f3f4f6;
}

._modalPaginationControls_30luo_179 {
  gap: 8px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  ._modalOverlay_30luo_13 {
    padding: 16px;
  }

  ._modal_30luo_13 {
    border-radius: 16px;
  }

  ._searchSection_30luo_75 {
    padding: 12px 16px;
  }

  ._pagination_30luo_170 {
    padding: 12px 16px 8px;
  }
}
/**
 * 공통 선택 모달 스타일
 * - ClientSelectionModal, BMSelectionModal, DepartmentSelectionModal에서 공유
 * - 브랜드 컬러 (#FF6B00) 적용
 * - Pretendard 폰트 사용
 */

/* CSS 변수: 행 높이 및 border 두께 */
:root {
  --selection-row-height: 48px;
  --selection-row-border: 1px;
}

/* ========================================
   테이블 헤더
   ======================================== */
._tableHeader_sezt6_17 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  padding: 8px 20px;
  height: 40px;
}

._headerCell_sezt6_27 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 18px;
  color: #5f5f5f;
}

/* ========================================
   테이블 본문
   ======================================== */
._tableRow_sezt6_38 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 6px 20px;
  min-height: calc(var(--selection-row-height) - var(--selection-row-border));
  box-sizing: border-box;
}

/* 마지막 행을 제외한 모든 행에 border-bottom */
._tableRow_sezt6_38:not(:last-child) {
  border-bottom: var(--selection-row-border) solid #f3f4f6;
}

._tableRow_sezt6_38:hover {
  background: #fafafa;
}

/* ========================================
   공통 셀 스타일
   ======================================== */
._selectButtonWrapper_sezt6_60 {
  display: flex;
  align-items: center;
  justify-content: center;
}

._selectButton_sezt6_60 {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 0 8px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #ff6b00;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 24px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._selectButton_sezt6_60:hover {
  background: #fff8f3;
  border-color: #ff6b00;
}

._selectButton_sezt6_60:active {
  transform: scale(0.98);
}

/* ========================================
   안내문구 영역 (고객사 등록 안내)
   ======================================== */
._noticeContent_sezt6_97 {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

._noticeText_sezt6_104 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #5f5f5f;
  display: flex;
  align-items: center;
  gap: 6px;
}

._noticeIcon_sezt6_115 {
  flex-shrink: 0;
}

._noticeButton_sezt6_119 {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 0 12px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #ff6b00;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._noticeButton_sezt6_119:hover {
  background: #fff8f3;
  border-color: #ff6b00;
}

/* ========================================
   ClientSelectionModal 전용 스타일
   ======================================== */
._clientHeaderCell240_sezt6_145 {
  width: 240px;
}

._clientHeaderCell136_sezt6_149 {
  width: 136px;
}

._clientHeaderCell64_sezt6_153 {
  width: 64px;
}

._clientName_sezt6_157 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #ff6b00;
  display: flex;
  align-items: center;
  width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._brn_sezt6_171 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #9e9e9e;
  display: flex;
  align-items: center;
  width: 136px;
}

._clientSelectCell_sezt6_182 {
  width: 64px;
}

/* ========================================
   BMSelectionModal & DepartmentSelectionModal 공통 BM 스타일
   ======================================== */
._bmHeaderCell200_sezt6_189 {
  width: 200px;
}

._bmHeaderCell120_sezt6_193 {
  width: 120px;
}

._bmHeaderCell82_sezt6_197 {
  width: 82px;
}

._bmCell_sezt6_201 {
  display: flex;
  align-items: center;
  width: 200px;
  height: 100%;
}

._bmContainer_sezt6_208 {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  max-height: calc(var(--selection-row-height) - var(--selection-row-border));
}

._bmAvatar_sezt6_216 {
  width: 32px !important;
  height: 32px !important;
  border-radius: 6.6px;
  background-color: #f3f4f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
}

._bmInfoContainer_sezt6_228 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

._bmName_sezt6_234 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #5f5f5f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._bmTitle_sezt6_245 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  color: #9e9e9e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._department_sezt6_256 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #9e9e9e;
  display: flex;
  align-items: center;
  width: 120px;
}

._bmSelectCell_sezt6_267 {
  width: 82px;
}

/* ========================================
   DepartmentSelectionModal 전용 스타일
   ======================================== */
._deptHeaderCell200_sezt6_274 {
  width: 200px;
}

._deptHeaderCell160_sezt6_278 {
  width: 160px;
}

._deptHeaderCell82_sezt6_282 {
  width: 82px;
}

._deptName_sezt6_286 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #ff6b00;
  display: flex;
  align-items: center;
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

._deptBmCell_sezt6_300 {
  width: 160px;
}

._deptSelectCell_sezt6_304 {
  width: 82px;
}

._noManager_sezt6_308 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #9e9e9e;
}
/**
 * 날짜 선택 달력 모달 스타일
 * - 피그마 디자인 기반 구현
 * - 브랜드 컬러 (#FF6B00) 적용
 * - Pretendard 폰트 사용
 */

/* ========================================
   모달 오버레이 & 컨테이너
   ======================================== */
._modalOverlay_uwnw9_11 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

._modalContainer_uwnw9_22 {
  display: flex;
  align-items: center;
  justify-content: center;
}

._calendar_uwnw9_28 {
  display: inline-flex;
  padding: 16px 24px 20px 24px;
  align-items: center;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid #c8c8c8;
  background: #ffffff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* ========================================
   왼쪽 달력 영역 (일자 선택)
   ======================================== */
._calendarLeft_uwnw9_43 {
  display: flex;
  height: 240px;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

/* 일자 섹션 상단 헤더 */
._calendarHeader_uwnw9_53 {
  display: flex;
  width: 294px;
  height: 38px;
  padding: 0 8px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

._yearNavigation_uwnw9_63,
._monthNavigation_uwnw9_64 {
  display: flex;
  align-items: center;
  gap: 4px;
}

._navButton_uwnw9_70 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #e8e8e8;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #5f5f5f;
  transition: all 0.2s ease;
}

._navButton_uwnw9_70:hover {
  background: #d9d9d9;
}

._navButton_uwnw9_70:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

._monthText_uwnw9_93 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #6b7897;
  text-align: center;
  min-width: 40px;
}

._yearText_uwnw9_103 {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #6b7897;
  text-align: center;
  min-width: 64px;
}

/* 일자 섹션 하단 컨테이너 (요일 + 날짜 그리드) */
._calendarGrid_uwnw9_114 {
  display: flex;
  width: 296px;
  height: 180px;
  align-items: flex-start;
  align-content: flex-start;
  column-gap: 14px;
  row-gap: 0px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* 요일 헤더 셀 */
._weekDay_uwnw9_127 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #5f5f5f;
}

/* 주말 요일 헤더 */
._weekendDay_uwnw9_141 {
  color: #ff6b00;
}

/* 날짜 셀 */
._dateCell_uwnw9_146 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 26px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  flex-shrink: 0;
}

._dateText_uwnw9_161 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #5f5f5f;
  position: relative;
  z-index: 2;
}

/* 호버 효과 */
._dateCell_uwnw9_146:hover:not(._today_uwnw9_177):not(._selected_uwnw9_177) ._dateText_uwnw9_161 {
  background: #fff8f3;
  border-radius: 50%;
  color: #ff6b00;
}

/* 이전/다음 달 날짜 */
._dateCell_uwnw9_146._otherMonth_uwnw9_184 ._dateText_uwnw9_161 {
  color: #d9d9d9;
  font-weight: 700;
}

._dateCell_uwnw9_146._otherMonth_uwnw9_184:hover ._dateText_uwnw9_161 {
  background: #f5f5f5;
  color: #c8c8c8;
}

/* 오늘 날짜 - 오렌지 원형 배경 */
._dateCell_uwnw9_146._today_uwnw9_177 ._dateText_uwnw9_161 {
  background: #ff6b00;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
}

._dateCell_uwnw9_146._today_uwnw9_177:hover ._dateText_uwnw9_161 {
  background: #e55a00;
}

/* 선택된 날짜 - 연한 오렌지 원형 배경 */
._dateCell_uwnw9_146._selected_uwnw9_177 ._dateText_uwnw9_161 {
  background: #fbd9c0;
  color: #ff6b00;
  font-weight: 700;
  border-radius: 50%;
}

._dateCell_uwnw9_146._selected_uwnw9_177:hover ._dateText_uwnw9_161 {
  background: #faccaa;
}

/* 주말 날짜 - 오렌지 텍스트 */
._dateCell_uwnw9_146._weekend_uwnw9_141 ._dateText_uwnw9_161 {
  color: #ff6b00;
  font-weight: 400;
}

._dateCell_uwnw9_146._weekend_uwnw9_141:hover ._dateText_uwnw9_161 {
  background: #fff8f3;
  border-radius: 50%;
  font-weight: 400;
}

/* ========================================
   구분선
   ======================================== */
._divider_uwnw9_233 {
  width: 2px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}

/* ========================================
   월 선택 패널
   ======================================== */
._monthPanel_uwnw9_245 {
  display: flex;
  height: 240px;
  padding: 4px 0;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* ========================================
   연도 선택 패널
   ======================================== */
._yearPanel_uwnw9_257 {
  display: flex;
  height: 240px;
  padding: 4px 0;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 60px;
}

._todayButton_uwnw9_267 {
  width: 109px;
  height: 26px;
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #9e9e9e;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

._todayButton_uwnw9_267:hover {
  background: #f3f4f6;
  border-color: #c8c8c8;
  color: #5f5f5f;
}

._selectorLabel_uwnw9_289 {
  height: 21px;
  background: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #5f5f5f;
  width: 33px;
  align-self: center;
}

/* 월 그리드 */
._monthGrid_uwnw9_306 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  align-content: start;
  width: 115px;
}

._monthButton_uwnw9_314 {
  width: 52px;
  height: 26px;
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #c8c8c8;
  cursor: pointer;
  transition: all 0.2s ease;
}

._monthButton_uwnw9_314:hover {
  background: #f3f4f6;
  border-color: #c8c8c8;
  color: #9e9e9e;
}

._monthButton_uwnw9_314._active_uwnw9_335 {
  background: #ffffff;
  border-color: #9e9e9e;
  color: #5f5f5f;
}

/* 연도 그리드 */
._yearGrid_uwnw9_342 {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(1, 1fr);
  gap: 4px;
  align-content: center;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 180px;
  width: 56px;
  align-self: center;
}

._yearButton_uwnw9_356 {
  width: 52px;
  height: 26px;
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 16px;
  color: #c8c8c8;
  cursor: pointer;
  transition: all 0.2s ease;
  justify-self: center;
  align-self: center;
}

._yearButton_uwnw9_356:hover {
  background: #f3f4f6;
  border-color: #c8c8c8;
  color: #9e9e9e;
}

._yearButton_uwnw9_356._active_uwnw9_335 {
  background: #ffffff;
  border-color: #9e9e9e;
  color: #5f5f5f;
}

/* ========================================
   반응형 디자인
   ======================================== */
@media (max-width: 768px) {
  ._modalOverlay_uwnw9_11 {
    padding: 16px;
  }

  ._calendar_uwnw9_28 {
    border-radius: 20px;
    padding: 12px 16px 16px;
    flex-direction: column;
    gap: 16px;
  }

  ._calendarLeft_uwnw9_43 {
    min-width: auto;
  }

  ._monthPanel_uwnw9_245,
  ._yearPanel_uwnw9_257 {
    width: 100%;
    height: auto;
    padding: 8px;
  }

  ._monthGrid_uwnw9_306,
  ._yearGrid_uwnw9_342 {
    grid-template-columns: repeat(4, 1fr);
    height: auto;
  }

  ._divider_uwnw9_233 {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}
/**
 * ValidationAlert 스타일
 * Figma 디자인 시스템을 반영한 경고 팝업 스타일
 */

/* 메인 컨테이너 */
._container_2dfn5_7 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  background-color: var(--color-background-100, #ffffff);
  border-radius: 24px;
}

/* 경고 헤더 (아이콘 + Caution 텍스트) */
._header_2dfn5_17 {
  display: flex;
  align-items: center;
  gap: 4px;
}

._headerIcon_2dfn5_23 {
  flex-shrink: 0;
}

._headerText_2dfn5_27 {
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-brand-primary, #ff6b00);
}

/* 경고 메시지 */
._message_2dfn5_36 {
  font-family: 'Pretendard', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  color: var(--color-foreground-500, #3c3c3c);
  word-break: keep-all;
}

/* 누락 필드 목록 */
._detailsList_2dfn5_46 {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
  list-style-position: outside;
}

._detailsItem_2dfn5_53 {
  font-family: 'Pretendard', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-foreground-500, #3c3c3c);
  margin-bottom: 4px;
}

._detailsItem_2dfn5_53:last-child {
  margin-bottom: 0;
}

/* 액션 버튼 영역 */
._actions_2dfn5_67 {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

/* 확인 버튼 커스텀 스타일 */
._confirmButton_2dfn5_75 {
  /* Button 컴포넌트의 primary variant 위에 추가 스타일 */
  background-color: var(--color-brand-primary, #ff6b00);
  border-radius: 10px;
  padding: 8px 16px;
  height: 50px;

  /* Figma 디자인의 그림자 효과 */
  box-shadow:
    0px 4px 12px 0px rgba(255, 107, 0, 0.4),
    inset 0px 8px 12px 0px #ff9b52;

  /* 트랜지션 효과 */
  transition: all 0.2s ease;
}

._confirmButton_2dfn5_75:hover:not(:disabled) {
  background-color: #ff7a1a;
  /* 호버 시에도 흰색 텍스트 및 아이콘 유지 */
  color: var(--color-text-inverse, #ffffff);
  border: none;
  --icon-stroke-color: #ffffff;
  box-shadow:
    0px 6px 16px 0px rgba(255, 107, 0, 0.5),
    inset 0px 8px 12px 0px #ffa666;
}

._confirmButton_2dfn5_75:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow:
    0px 2px 8px 0px rgba(255, 107, 0, 0.3),
    inset 0px 8px 12px 0px #ff9b52;
}

/* 접근성: 고대비 모드 지원 */
@media (prefers-contrast: high) {
  ._headerText_2dfn5_27,
  ._message_2dfn5_36,
  ._detailsItem_2dfn5_53 {
    font-weight: 700;
  }

  ._confirmButton_2dfn5_75 {
    border: 2px solid var(--color-brand-primary, #ff6b00);
  }
}

/* 접근성: 모션 감소 설정 지원 */
@media (prefers-reduced-motion: reduce) {
  ._confirmButton_2dfn5_75 {
    transition: none;
  }

  ._confirmButton_2dfn5_75:active:not(:disabled) {
    transform: none;
  }
}
/**
 * YearSelector - 귀속 연도 선택 컴포넌트 스타일
 */

._container_12y7u_5 {
  display: flex;
  align-items: center;
  gap: 10px; /* Figma: 10px */
  position: relative;
  justify-content: flex-start;
}

._label_12y7u_13 {
  font-size: 14px;
  font-weight: 700;
  color: #3c3c3c;
  line-height: 24px;
  white-space: nowrap;
}

._dropdown_12y7u_21 {
  position: relative;
  width: 148px;
}

/* 선택 버튼 */
._selector_12y7u_27 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 34px;
  padding: 8px 16px 9px;
  background: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 20px;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 10px;
}

._selector_12y7u_27:hover {
  border-color: #a0a0a0;
}

._selector_12y7u_27:focus {
  outline: none;
  border-color: #ff6b00;
}

._selectorOpen_12y7u_52 {
  border-color: #ff6b00;
}

._selectedValue_12y7u_56 {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: #5f5f5f;
  line-height: 18px;
  text-align: left;
}

/* 화살표 아이콘 */
._arrow_12y7u_66 {
  width: 8px;
  height: 6px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

._arrowOpen_12y7u_73 {
  transform: rotate(180deg);
}

/* 드롭다운 리스트 */
._dropdownList_12y7u_78 {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 4px;
  margin: 0;
  list-style: none;
}

._dropdownList_12y7u_78 li {
  margin: 0;
  padding: 0;
}

._option_12y7u_100 {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #5f5f5f;
  line-height: 18px;
  text-align: left;

  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
}

._option_12y7u_100:hover {
  background: #f8f8f8;
  color: #3c3c3c;
}

._optionSelected_12y7u_122 {
  background: #fff5ed;
  color: #ff6b00;
}

._optionSelected_12y7u_122:hover {
  background: #ffead9;
}

/* 스크롤바 스타일 */
._dropdownList_12y7u_78::-webkit-scrollbar {
  width: 6px;
}

._dropdownList_12y7u_78::-webkit-scrollbar-track {
  background: #f8f8f8;
  border-radius: 3px;
}

._dropdownList_12y7u_78::-webkit-scrollbar-thumb {
  background: #c8c8c8;
  border-radius: 3px;
}

._dropdownList_12y7u_78::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

/* 반응형 */
@media (max-width: 768px) {
  ._container_12y7u_5 {
    gap: 12px;
  }

  ._label_12y7u_13 {
    font-size: 13px;
    padding: 0 8px;
  }

  ._dropdown_12y7u_21 {
    width: 120px;
  }

  ._selector_12y7u_27 {
    padding: 6px 12px;
    height: 32px;
  }
}
/**
 * 통합 프로젝트 모달 스타일
 * - 새프로젝트 등록 / 프로젝트 정보 수정 통합
 * - Figma 디자인 기반 구현
 * - 브랜드 컬러 (#FF6B00) 적용
 * - Pretendard 폰트 사용
 */

/* ========================================
   모달 오버레이 & 컨테이너
   ======================================== */
._modalOverlay_1xpbp_12 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1000;
  padding: 200px 24px 24px;
}

/* 최적화된 모달 컨테이너 */
._modal_1xpbp_12 {
  display: inline-flex;
  width: 810px;
  padding: 12px 0px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-radius: 24px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}

/* ========================================
   헤더 영역
   ======================================== */
._header_1xpbp_40 {
  display: flex;
  width: 810px;
  padding: 0 8px;
  justify-content: space-between;
  align-items: center;
}

/* 탭 섹션 */
._tabSection_1xpbp_49 {
  display: flex;
  width: 136.999px;
  padding: 0 14px 0 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

/* 탭 내부 컨테이너 */
._tabContainer_1xpbp_61 {
  display: flex;
  width: 206px;
  padding: 0 8px;
  align-items: center;
  gap: 10px;
  border: 0 solid #d9d9d9;
}

/* 탭 아이콘 */
._tabIcon_1xpbp_71 {
  width: 15.999px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

/* 탭 타이포그래피 */
._tabText_1xpbp_79 {
  display: flex;
  width: 140px;
  height: 20px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #ff6b00;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
}

/* ========================================
   폼 본문 영역
   ======================================== */
._body_1xpbp_97 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3개 열 균등 분할 */
  grid-gap: 10px;
  width: 810px;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  padding: 10px 24px;
}

/* 폼 필드 컨테이너 */
._formField_1xpbp_108 {
  display: flex;
  padding: 6px 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* 프로젝트명 필드 확장 - 2개 열 너비 차지 */
._projectNameField_1xpbp_117 {
  grid-column: span 2; /* 2개 그리드 열 차지 */
}

/* 필드 헤더 */
._fieldHeader_1xpbp_122 {
  display: flex;
  padding: 0 4px;
  align-items: center;
  gap: 10px;
}

/* 필드 라벨 */
._fieldLabel_1xpbp_130 {
  color: #5f5f5f;
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
}

/* 필수 필드 별표 */
._requiredAsterisk_1xpbp_140 {
  color: #ff3b30;
  margin-left: 2px;
}

/* ========================================
   입력 래퍼 - 통합 스타일
   ======================================== */
._inputWrapper_1xpbp_148 {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 20px;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.08);
  height: 34px;
  width: 240px;
  padding: 8px 16px 9px 16px;
  gap: 10px;
}

._inputWrapper_1xpbp_148:focus-within {
  background: #ffffff;
}

/* 입력 필드 */
._fieldInput_1xpbp_167 {
  width: 218px;
  height: 16px;
  background: transparent;
  border: none;
  outline: none;
  color: #5f5f5f;
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 150% */
}

._fieldInput_1xpbp_167::placeholder {
  color: #9e9e9e;
}

/* 공통 Input 컴포넌트의 focus 스타일 오버라이드 */
._fieldInput_1xpbp_167:focus {
  border-color: #c8c8c8 !important;
  box-shadow: none !important;
  outline: none;
}

/* 모달용 Input 배경 오버라이드 (폭은 기본 유지) */
._whiteModalInput_1xpbp_193 {
  background: #ffffff;
}

._whiteModalInput_1xpbp_193:focus {
  background: #ffffff;
  border-color: #c8c8c8;
  box-shadow: none;
}

._whiteModalInput_1xpbp_193:read-only {
  background: #ffffff;
}

._whiteModalInput_1xpbp_193:read-only:focus {
  background: #ffffff;
}

/* ========================================
   Select 요소
   ======================================== */
._select_1xpbp_214 {
  width: 210px;
  height: 34px;
  background: #f8f8f8;
  border: 1px solid #c8c8c8;
  border-radius: 20px;
  box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.08);
  padding: 8px 16px;
  color: #5f5f5f;
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%233c3c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 36px;
}

._select_1xpbp_214:focus {
  background: #ffffff;
  outline: none;
}

._select_1xpbp_214 option {
  background: #ffffff;
  color: #5f5f5f;
  font-family: 'Pretendard', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

/* ========================================
   푸터 영역
   ======================================== */
._footer_1xpbp_255 {
  display: flex;
  width: 810px;
  height: 52px;
  padding: 12px 24px;
  justify-content: flex-start;
  align-items: center;
}

/* 삭제 버튼 스타일 */
._deleteButton_1xpbp_265 {
  background: transparent;
  color: #dc2626;
  border: 1px solid #dc2626;
}

._deleteButton_1xpbp_265:hover:not(:disabled) {
  background: #fef2f2;
  border-color: #b91c1c;
  color: #b91c1c;
}

._deleteButton_1xpbp_265:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 필수 항목 안내 문구 */
._requiredNotice_1xpbp_283 {
  width: 810px;
  padding: 0 24px 8px 24px;
  color: #9e9e9e;
  font-family: 'Pretendard', sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
}

._requiredNotice_1xpbp_283 ._asterisk_1xpbp_293 {
  color: #ff3b30;
}

._clickableIcon_1xpbp_297 {
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  outline: none;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  color: #c8c8c8;
  --icon-stroke-color: currentColor;
}

._clickableIcon_1xpbp_297 path {
  stroke-width: 1.8 !important;
}

._clickableIcon_1xpbp_297:hover {
  color: #ff6b00 !important;
  transform: translateY(-1px);
}

._clickableIcon_1xpbp_297:focus,
._clickableIcon_1xpbp_297:focus-visible,
._clickableIcon_1xpbp_297:active {
  outline: none;
  box-shadow: none;
}

/* ========================================
   반응형 디자인
   ======================================== */
@media (max-width: 768px) {
  ._modalOverlay_1xpbp_12 {
    padding: 16px;
  }

  ._modal_1xpbp_12 {
    width: 100%;
    max-width: 810px;
    padding: 16px 0px;
    border-radius: 20px;
  }

  ._header_1xpbp_40,
  ._body_1xpbp_97,
  ._footer_1xpbp_255 {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  ._formField_1xpbp_108 {
    width: 100%;
  }

  ._inputWrapper_1xpbp_148 {
    width: 100%;
  }

  ._tabText_1xpbp_79 {
    width: auto;
  }

  ._footer_1xpbp_255 {
    padding: 12px 8px;
    justify-content: center;
  }
}
._wrapper_1oxst_1 {
  padding: 40px;
  text-align: center;
  background: var(--color-base-100, #ffffff);
  border: 1px solid var(--color-foreground-100, #e5e7eb);
  border-radius: 12px;
  max-width: 640px;
  margin: 48px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

._title_1oxst_12 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-foreground-500, #374151);
}

._message_1oxst_19 {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-foreground-300, #6b7280);
  margin: 0 0 20px;
  white-space: pre-line;
}

._actions_1oxst_27 {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

._stack_1oxst_34 {
  text-align: left;
  background: #1f2937;
  color: #f9fafb;
  padding: 16px;
  border-radius: 8px;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
  font-size: 12px;
  max-height: 300px;
  overflow: auto;
  line-height: 1.5;
  border: 1px solid #374151;
}
/**
 * ErrorScreen 컴포넌트 통합 스타일
 * variant: 'auth' | 'error'로 색상 구분
 */

._container_n62cv_6 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* Auth variant - 파란색 계열 */
._containerAuth_n62cv_18 {
  color: #1565c0;
  background: #e3f2fd;
}

/* Error variant - 빨간색 계열 */
._containerError_n62cv_24 {
  color: #b71c1c;
  background: #fff3f3;
}

._icon_n62cv_29 {
  margin-bottom: 16px;
}

/* Auth 아이콘 색상 */
._iconCircleAuth_n62cv_34 {
  fill: #bbdefb;
}

._iconPathAuth_n62cv_38 {
  stroke: #1565c0;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Error 아이콘 색상 */
._iconCircleError_n62cv_45 {
  fill: #ffcdd2;
}

._iconPathError_n62cv_49 {
  stroke: #b71c1c;
  stroke-width: 2;
  stroke-linecap: round;
}

._title_n62cv_55 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

._message_n62cv_61 {
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
._container_scyvq_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 120px;
  color: #4b5563;
}

._spinner_scyvq_11 {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 3px solid rgba(75, 85, 99, 0.25);
  border-top-color: #4b5563;
  animation: _spin_scyvq_11 0.9s linear infinite;
}

@keyframes _spin_scyvq_11 {
  to {
    transform: rotate(360deg);
  }
}
/* ==========================================================================
   Pretendard Font Face
   ========================================================================== */
@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Pretendard/Pretendard-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Pretendard/Pretendard-Bold.woff2') format('woff2');
}

/* ==========================================================================
   CSS Reset & Base Styles (Merged from base.css)
   ========================================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px; /* 1rem = 16px 기준 설정 */
  scroll-behavior: smooth; /* 부드러운 스크롤 */
  /* 다크모드 완전 차단 */
  color-scheme: light only !important;
  -webkit-color-scheme: light only !important;
  forced-color-adjust: none !important;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  height: 100%;
  /* Pretendard 폰트 적용 */
  font-family: 'Pretendard', sans-serif;
  background-color: var(--color-background-primary, #ffffff);
  color: var(--color-text-primary, #171717);
  line-height: var(--line-height-normal, 1.43); /* Fluent UI 표준 */
  font-size: var(--font-size-sm, 14px); /* Teams 표준 14px */
  -webkit-font-smoothing: antialiased; /* 폰트 렌더링 개선 */
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   Typography & Links (Merged from base.css)
   ========================================================================== */

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease; /* 색상 변화 부드럽게 */
}

a:focus-visible {
  outline: 2px solid var(--color-border-focus); /* Teams 포커스 색상 */
  outline-offset: 2px;
}

/* ==========================================================================
   Form Elements (Merged from base.css)
   ========================================================================== */

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease; /* 부드러운 상호작용 */
}

button:focus-visible {
  outline: 2px solid var(--color-border-focus); /* Teams 포커스 색상 */
  outline-offset: 2px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: transparent;
  transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-border-focus); /* Teams 포커스 색상 */
  outline-offset: 1px;
}

input::placeholder,
textarea::placeholder {
  color: var(--color-foreground-300, var(--color-neutral-700));
  opacity: 1; /* Firefox 호환성 */
}

/* ==========================================================================
   Lists, Images & Tables (Merged from base.css)
   ========================================================================== */

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* 하단 여백 제거 */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
}

/* ==========================================================================
   Selection & Scrollbar (Merged from base.css)
   ========================================================================== */

::selection {
  background-color: var(--color-brand-primary);
  color: var(--color-background-100, var(--color-white));
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-background-400, var(--color-background-tertiary));
}

::-webkit-scrollbar-thumb {
  background: var(--color-foreground-200, var(--color-neutral-300));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-foreground-300, var(--color-neutral-700));
}

/* ==========================================================================
   CSS Design Tokens (Unified & Enhanced)
   ========================================================================== */
:root {
  /* Spacing tokens */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;
  --spacing-2xl: 32px;

  /* Primary brand color (main variable) */
  --color-brand-primary: #ff6b00;

  /* Backward compatibility alias for existing components */
  --color-brand-main: var(--color-brand-primary);
  --color-brand-light: #ff9b52;

  /* Modern color palette */
  --color-white: #ffffff;
  --color-neutral-50: #fafafa;
  --color-neutral-100: #f5f5f5;
  --color-neutral-300: #d6d6d6;
  --color-neutral-700: #5c5c5c;
  --color-neutral-900: #171717;

  /* Extended color palette for component compatibility */
  --color-background-100: var(--color-white);
  --color-background-200: #f0f0f0;
  --color-background-300: #f8f8f8;
  --color-background-400: #f3f4f6;
  --color-background-500: #e8e8e8;

  --color-foreground-100: #d9d9d9;
  --color-foreground-200: #c8c8c8;
  --color-foreground-300: #9e9e9e;
  --color-foreground-400: #5f5f5f;
  --color-foreground-500: #3c3c3c;
  --color-foreground-600: #282828;

  /* Semantic color tokens */
  --color-text-primary: var(--color-neutral-900);
  --color-text-secondary: var(--color-neutral-700);
  --color-text-inverse: var(--color-white);
  --color-text-brand: var(--color-brand-primary);

  --color-background-primary: var(--color-white);
  --color-background-secondary: var(--color-neutral-50);
  --color-background-tertiary: var(--color-neutral-100);

  --color-border-primary: var(--color-neutral-300);
  --color-border-focus: var(--color-brand-primary);

  /* Typography tokens */
  --font-family-primary: 'Pretendard', sans-serif;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;

  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-normal: 1.43;

  /* Border radius tokens */
  --border-radius-sm: 10px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;

  /* Component tokens */
  --menu-size-sm: 32px;
  --menu-size-md: 45px;
  --menu-width-sm: 126px;
  --menu-width-md: 140px;
  --menu-width-lg: 156px;
  --menu-padding-compact: var(--spacing-xs) var(--spacing-sm);
  --menu-padding-comfortable: var(--spacing-sm) var(--spacing-md);
  --menu-radius: var(--border-radius-md);
  --menu-gap: var(--spacing-md);

  /* Sidebar total width: 34px (icon) + 20px (gap) + 156px (text) = 210px */
  --sidebar-total-width: 210px;

  --icon-size-sm: 16px;
  --icon-size-lg: 30px;
  --icon-background-opacity: 0.3;
}

/* ==========================================================================
   Accessibility & Responsive (Enhanced)
   ========================================================================== */

/* Teams 접근성 및 반응형 개선 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    /* 고대비 모드에서 더 강한 대비 */
    --color-foreground-500: #000000;
    --color-brand-primary: #0078d4;
    --color-brand-main: var(--color-brand-primary);
  }
}

/* 200% 확대 지원 */
@media (min-resolution: 192dpi) {
  html,
  body {
    /* 고해상도에서 선명한 폰트 렌더링 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .flex-column-mobile {
    flex-direction: column;
  }

  .grid-1-mobile {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Focus Styles (Enhanced)
   ========================================================================== */

*:focus-visible {
  outline: 2px solid var(--color-border-focus);
  outline-offset: 2px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.standard-page-container {
  width: 100%;
}

.standard-section {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Common Component Utilities
   ========================================================================== */

/* Transition utilities - 표준 트랜지션 패턴 */
.transition-smooth {
  transition: all 0.15s ease;
}

.transition-colors {
  transition:
    color 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
}

/* Flex utilities */
.flex-shrink-0 {
  flex-shrink: 0;
}

/* Spacing utilities */
.p-0 {
  padding: 0;
}
.p-1 {
  padding: var(--spacing-xs);
}
.p-2 {
  padding: var(--spacing-sm);
}
.p-3 {
  padding: var(--spacing-md);
}
.p-4 {
  padding: var(--spacing-lg);
}
