
.icon .badge {
    position: absolute;
    font-size: 11px;
    text-align: center;
    padding: 3px 4px 2px 5px;
    font-style: normal;
    margin-top: 9px;
    margin-left: -12px;
    border-radius: 10px;
}

.card-custom {
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #C00E53;
}

.card {
    border: 1px solid #C00E53;
}
.progress-container {
  display: flex;
  align-items: center;
}

.progress-text {
  font-size: 1rem; /* 적절한 크기로 텍스트 크기 조정 */
  font-weight: bold; /* 가독성을 위해 굵게 */
  color: rgb(255, 215, 0); /* 그래프와 동일한 색상 */
}
.progress {
    height: 17px;
    border-radius: 12.5px;
}
.table thead th {
    border-bottom: none;
}
.table tbody tr td {
    border-top: none;
}

.rounded-icon {
    border-radius: 50%;
    padding: 5px;
}
.registration-products {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-text {
    word-break: break-all;
    white-space: normal;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 40px); /* Adjust the width based on icon size */
}


.icon-box-pc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #C00E53;
  border-radius: 8px;
  padding: 0px;
  height: 80px;
  position: relative;
  text-align: center;
  margin-bottom: 15px;
  padding-top: 3px;
}
.icon-box-pc img {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}
.icon-text-pc {
  font-size: 23px; /* 기본 사이즈 */
}

.icon-text-pc2 {
  font-size: 16px;
}


/* ✅ 중간 화면 (577px ~ 768px) */
@media (max-width: 768px) {
  .icon-text-pc {
    font-size: 24px;
  }
  .icon-text-pc2 {
    font-size: 16px;
  }
}

/* ✅ 모바일 화면 (최대 476px) */
@media (max-width: 420px) {
  .icon-text-pc {
    font-size: 22px;
  }
  .icon-text-pc2 {
    font-size: 15px;
  }
}


/* ✅ 모바일 화면 (최대 476px) */
@media (max-width: 380px) {
  .icon-text-pc {
    font-size: 20px;
  }
  .icon-text-pc2 {
    font-size: 14px;
  }
}

/* ✅ 모바일 화면 (최대 300px) */
@media (max-width: 300px) {
  .icon-text-pc {
    font-size: 14px;
  }
  .icon-text-pc2 {
    font-size: 10px;
  }
}

.badge-custom {
    align-items: center;
    border: 0px ;
    border-radius: 8px;
    color: #ffffff;
    background-color: #6194DA !important;
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}

.search-section {
    margin-bottom: 20px;
    position: relative;
}
.search-section .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    cursor: pointer;
}
.search-section .form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}
.calendar-container {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    z-index: 1000;
    width: 301px; /* 달력의 너비를 조정 */
}
.input-group-text {
    background: none;
    border: none;
    padding-right: 10px; /* 아이콘과 텍스트 간격 조정 */
    display: flex;
    align-items: center; /* 아이콘과 텍스트를 세로로 가운데 정렬 */
}
.input-group-text i {
    margin-right: 5px; /* 아이콘과 "From", "To" 텍스트 간격 조정 */
}

.no-border-bottom {
    border-bottom: none !important;
  }

.border-none {
    border : none !important;
}


/* 가로 스크로 */
.scroll-wrapper {
    position: relative;
    margin-bottom: 24px;
  }

  .scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    background: #fff;
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none; /* IE */
  }

  .scroll-container::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .scrollbar {
    height: 12px;
    background: #eee;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 4px;
  }

  .scroll-thumb {
    height: 100%;
    background: #999;
    border-radius: 6px;
    width: 80px;
    transition: background 0.3s;
    cursor: pointer;
  }

  .scroll-table {
    min-width: 800px;
    width: max-content;
    border-collapse: collapse;
    font-size: 14px;
  }

  .scroll-table th,
  .scroll-table td {
    padding: 8px 12px;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
    text-align: center;
  }

  .footer-active {
    color: #C00E53 !important;
  }
  .footer-active span {
    color: #C00E53 !important;
  }
  .footer-active i {
    color: #C00E53 !important;
  }

  #footer-bar {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin: 0;
    background-color: #FFF !important;
    padding-bottom: calc(var(--safe-area-inset-bottom, 0px));
  }

  #footer-bar a {
    width: 20%;
    text-align: center;
    text-decoration: none;
    padding: 8px 0;
  }

  #footer-bar a i,
  #footer-bar a img {
    display: block;
    width: 32px !important;
    height: 32px !important;
    font-size: 28px !important;
    line-height: 20px;
    margin: 0 auto 1px; /* 가운데 정렬 */
    color: #ABA9AB;
  }

  #footer-bar a img {
    object-fit: contain;
  }

  #footer-bar a span {
    display: block;
    font-size: 15px;
    color: #333;
    text-align: center;
  }

  input::placeholder {
    font-size: 15px !important;
    color: #aaa;
  }

  .line-2-limit {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;       /* 살짝 줄이기 */
    max-height: 2.8em;        /* 줄 수에 맞게 맞춤 */
    word-break: break-word;   /* 긴 단어 잘림 방지 */
    white-space: normal;      /* 한 줄로 고정된 경우 해제 */
  }

  .footer-bar-detached {
    border-radius: 0px;
  }

  .bi-check::before {
    content: "\f26e";
    color: #ffffff;
  }

  .oval-not-list-check {
    border: 1px solid #C00E53;
    width: 20px;
    height: 20px;
    border-radius: 0px;
    margin-right: 5px;
    color : #ffffff
  }

  .oval-check {
    font-size: 13px;
  }

  .oval-check .bi-check {
    font-size: 25px;
  }

  .oval-check .bi-check::before {
    color: #C00E53; /* 클릭 시 색상 */
    font-size: 25px;
  }



  .icon-box.fixed-size {
    width: 65px !important;
    height: 65px !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }


  .icon-show {
  color: #c00e53;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  margin-right: 30px;
  font-size: 1.2rem;
}
