/*******************************************************************
 * 관리자 전용 : 플랫폼별 '완료' 배지 색상 최종 강제 (100% 적용)
 *******************************************************************/

/* 완료 배지 기본 모양 */
.admin-view .reg-comp {
  display:inline-block;
  padding:0 6px;
  border-radius:3px;
  font-weight:700;
  margin-right:6px;
}

/* 플랫폼별 배경색 (가장 마지막에 적용됨) */
/*******************************************************************
 * ✅ 플랫폼별 색상 최종 우선 적용 (기존 투명처리 덮어쓰기)
 *******************************************************************/
.admin-view .adm-plat-yanolja > .reg-comp { 
  background-color: #ffe066 !important; color:#000 !important;
}
.admin-view .adm-plat-yeogi > .reg-comp { 
  background-color: #99ccff !important; color:#000 !important;
}
.admin-view .adm-plat-home > .reg-comp { 
  background-color: #ffb6c1 !important; color:#000 !important;
}
/* 기타 → 연녹색 */
.admin-view .adm-plat-etc .reg-comp {
  background-color: #b6f7a2 !important;
  color: #000 !important;
}

/* 취소신청 및 그 외 완료 → 붉은색 */
.admin-view .adm-plat-cancel .reg-comp {
  background-color: #ff4d4d !important;
  color: #fff !important;
}

/* 오늘 날짜 셀 전체 강조 – 배경은 그대로 두고 테두리만 굵게 */
td.today-cell {
  border: 3px solid #0625f0 !important;   /* 파란색 두꺼운 테두리 */
  border-radius: 6px;                     /* 살짝 둥근 모서리 */
  box-sizing: border-box;                 /* 테두리 두께 포함 */
  position: relative;
  z-index: 5;
}

/* 오늘 날짜 텍스트 강조 (선택사항) */
td.today-cell .date-text {
  font-weight: 700;
  color: #004085; /* 짙은 남색 */
}

.admin-view .reg-c-info {
  border-radius: 4px;
  line-height: 1.35;
  font-size: 12px;
  margin: 2px 0;
  padding: 3px 6px;
}

/* ✅ 완료(플랫폼별) - 색 대비 강화 */
.admin-view .adm-plat-yanolja .reg-comp { 
  background-color: #ffd633 !important; /* 더 진한 노랑 */
  color: #000 !important;
}
.admin-view .adm-plat-yeogi .reg-comp { 
  background-color: #66b2ff !important; /* 더 진한 하늘색 */
  color: #000 !important;
}
.admin-view .adm-plat-home .reg-comp { 
  background-color: #ff7fab !important; /* 진한 분홍 */
  color: #fff !important;
}
.admin-view .adm-plat-etc .reg-comp { 
  background-color: #6edb82 !important; /* 진한 녹색 */
  color: #000 !important;
}

/* ✅ 기타 외의 플랫폼 → 취소신청 전용 (붉은 배경) */
.admin-view .adm-plat-cancel .reg-comp {
  background-color: #ff4d4d !important;
  color: #fff !important;
}

/* ✅ 공실(회색) – 다크모드 대비용 */
.admin-view .reg-cap_1 {
  background-color: #555 !important; /* 어두운 회색 */
  color: #fff !important;
  padding: 2px 6px;
  border-radius: 3px;
}

/* ✅ 오늘 날짜 강조 – 테두리만 굵게 (요금색상 유지) */
.admin-view td.today-cell {
  border: 3px solid #2600ff !important;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.5);
}

/* ✅ 가능/대기/취소/완료 상태 대비 강화 */
.admin-view .reg-wat { background-color: #ffe29a !important; color: #000 !important; }
.admin-view .reg-cap { background-color: #a9f5a9 !important; color: #000 !important; }
.admin-view .reg-comp { font-weight: bold; padding: 1px 6px; border-radius: 3px; }

/* ✅ 어두운 배경에서도 구분되도록 그림자 추가 */
.admin-view .reg-c-info span {
  text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: #ffffff !important;
    color: #000000 !important;
  }
  .caltable, .admin-view, td, th {
    background-color: #ffffff !important;
    color: #000 !important;
  }
}