.invoice_header {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
}

.invoice_header_subtitle {
  font-size: 1rem;
  color: #aaaaaa;
  font-weight: 500;
}

.invoice_activate {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.group_card {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}

.invoice_preview_page .group_card {
  justify-content: center;
}

.invoice_card_header {
  color: #aaaaaa;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.invoice_card_btn {
  border-radius: 1rem;
  border: 1px solid #e1bb53;
  color: white;
  background: #757474;
  padding: 0.1rem 1rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom_btn_input {
  border-radius: 1rem;
  border: 1px solid #e1bb53;
  color: white;
  background: #757474;
  padding: 0.1rem 1rem;
  font-weight: 500;
  width: 10rem;
}

.select-dropdown {
  width: 13rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("/assets/images/dropdown.png");
  background-position: right;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  border-radius: 25px;
}

.select-dropdown:focus-visible {
  outline: none;
}

.select-dropdown > option {
  border-radius: 0.5rem;
}

.custom_btn_input::placeholder {
  color: white;
}

input[name="invoiceInstruction"]:checked + .invoice_instruction_btn {
  background: #323030;
}
input[name="feeType"]:checked + .choose_fee_btn {
  background: #323030;
}
input[name="feeAmount"]:checked + .choose_fee_amount_btn {
  background: #323030;
}
input[name="billSend"]:checked + .bill_send_group_btn {
  background: #323030;
}

.custom_fee_amount_input_group {
  border: 1px solid #e1bb53;
  border-radius: 1rem;
  color: white;
  background: #757474;
}

.choose_fee_amount_btn_input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border:none;
  padding: 0;
}

.choose_fee_amount_btn_input:focus-visible {
  outline:none;
}

.choose_fee_amount_btn_input::-webkit-outer-spin-button,
.choose_fee_amount_btn_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.invoice_card_btn_checked {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  color: white;
  background: transparent;
  padding: 0.1rem 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.member_card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid #e1bb53;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  position: relative;
}

.member_card p {
  margin: 0;
}

.member_card .close_btn {
  border: none;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 100%;
  font-size: 0.675rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -7px;
  top: -8px;
  font-weight: bold;
  text-align: center;
  /* padding: 0.2rem 0.4rem; */
}

#timeSlots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35%;
  margin: auto;
}

.invoice_preview_page #timeSlots {
  width: 50%;
}

.startTimeBadge {
  color: #e1bb53;
  background-color: black;
  border: 1px solid gray;
}

.endTimeBadge {
  background-color: #ffffff;
  color: black;
  border: 1px solid gray;
}

#timeSlots td {
  font-weight: 500;
  font-size: 0.875rem;
  text-align: center;
}

.custom_input_fill_class {
  border: 1px solid #e1bb53 !important;
  background-color: #323030 !important;
  color: white !important;
  padding: 0 1rem !important;
  font-weight: 500;
}

#upload_image_container, #upload_image_container > label  {
  cursor: pointer;
}

.upload_image {
  width: 100px;
  height: 100px;
  background: white;
  color: black;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.carousel-container {
  text-align: center;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 80vh;
  max-height: 1000px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.prev {
  left: 10px;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 10px;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

#pdf-viewer {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.enlarge-container {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.close-enlarge {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

#enlarge-pdf-viewer {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.day-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #765e1e;
  padding: 0.2rem 0.5rem;
}
.time-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.3rem;
}

.start-time-badge {
  background: #c8c8c8;
  color: black;
}

.end-time-badge {
  background: #765e1e;
  color: white;
}

.date-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.5rem;
}

.start-date-badge {
  color: black;
  background: #c8c8c8;
}

.end-date-badge {
  color: white;
  background: #765e1e;
}

.month-badge {
  font-weight: 600;
}

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

#dateMonthSelector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.month-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  border: 2px solid white;
  font-weight: 700;
  cursor: pointer;
  color: white;
}

.month-header-single {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  color: white;
}

.month-header > label {
  cursor: pointer;
  color: inherit;
}

.month-header.active {
  border: 2px solid #e1bb53;
  color: #e1bb53;
}

.month-select-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  border: 2px solid white;
  font-weight: 700;
  cursor: pointer;
  color: white;
  background: transparent;
}

.month-select-dropdown > option {
  background: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  font-weight: 500;
}
