* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Montserrat', sans-serif;
  text-rendering: optimizeLegibility;
  background: #fcfcfc;
  padding:0px !important;
}
.mock-up-link {
  display: none;
}
@media (min-width: 768px) {
  .mock-up-link {
    display: block;
 }
}
.main-container-wrapper {
  background-color: #f8fafa;
  min-width: 320px;
  min-height: 568px;
  max-width: 414px;
  overflow-y: auto;
}
@media (min-width: 415px) {
  .main-container-wrapper {
    -moz-box-shadow: 0px 32px 47px rgba(32, 23, 23, 0.09);
    -webkit-box-shadow: 0px 32px 47px rgba(32, 23, 23, 0.09);
    box-shadow: 0px 32px 47px rgba(32, 23, 23, 0.09);
    margin: 24px auto;
 }
}
header {
  background-color: #fff;
  display: flex;
  height: 58px;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.header__btn {
  background-color: #86d8c9;
  border: 2px solid #fff;
  border-radius: 50%;
  -moz-box-shadow: 0px 2px 2px #86d8c9;
  -webkit-box-shadow: 0px 2px 2px #86d8c9;
  box-shadow: 0px 2px 2px #86d8c9;
  cursor: pointer;
  height: 80px;
  padding-top: 18px;
  position: absolute;
  top: -25px;
  width: 80px;
}
.menu:hover, .menu:focus {
  background: #67cebb;
  transition: all 0.3s ease-in;
  outline: none;
}
.header__btn .icon {
  display: inline-block;
}
.header__btn--left {
  left: -25px;
  padding-left: 38px;
  text-align: left;
}
.header__btn--right {
  right: -25px;
  text-align: right;
  width: 175px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  background-image: url(https://pms.simmega.com/images/company_logos/darul_inayah.png);
  background-size: cover;
  background-position-y: -12px;
  background-position-x: -10px;
}
.reservation-btn {
  width: 215px !important;
  margin-left: 0px !important;
  font-size: 18px !important;
  height: 35px;
  background:#86d8c9 !important;
  cursor: pointer;
}
.reservation-btn:hover, .reservation-btn:focus {
  background: #67cebb !important;
  transition: all 0.3s ease-in;
  outline: none;
}
.approval-btn {
  width: 125px !important;
  margin-left: 0px !important;
  font-size: 10px !important;
  background:#fdca40 !important;
  cursor: pointer;
}
.approval-btn:hover, .approval-btn:focus {
  background: #b4902b !important;
  transition: all 0.3s ease-in;
  outline: none;
}
.calendar-container {
  background-color: #fff;
  padding: 16px;
  margin-bottom: 20px;
}
.calendar-container__header {
  display: flex;
  justify-content: space-evenly;
}
.calendar-container__btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  color: #e9e8e8;
}
.calendar-container__btn:hover, .calendar-container__btn:focus {
  color: #9faab7;
  transition: all 0.3s ease-in;
}
.calendar-container__title {
  color: #222741;
  font-size: 20px;
  font-weight: 700;
}
.calendar-table {
  margin-top: 12px;
  width: 100%;
}
.calendar-table__item {
  border: 2px solid transparent;
  border-radius: 50%;
  color: #424588;
  font-size: 12px;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
.calendar-table__item:hover {
  background: #f8fafa;
  -moz-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  transition: all 0.3s ease;
  z-index: 2;
}

/* Booking Indicator - Small dot on booked dates */
.booking-indicator {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
}

.booking-indicator:not(.booking-indicator--double):not(.booking-indicator--multiple) {
  width: 4px;
  height: 4px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.booking-indicator--double,
.booking-indicator--multiple {
  background: transparent;
  width: auto;
  height: 4px;
}

.booking-dot {
  width: 4px;
  height: 4px;
  background: #ff6b6b;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.booking-dot:nth-child(2) {
  animation-delay: 0.3s;
}

.booking-count {
  font-size: 6px;
  color: #ff6b6b;
  font-weight: 700;
  margin-left: 1px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}
.calendar-table__row {
  display: flex;
  justify-content: center;
}
.calendar-table__header {
  border-bottom: 2px solid #f2f6f8;
  margin-bottom: 4px;
}
.calendar-table__header .calendar-table__col {
  display: inline-block;
  color: #99a4ae;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 3px;
  text-align: center;
  text-transform: uppercase;
  width: 40px;
  height: 38px;
}
@media (min-width: 360px) {
  .calendar-table__header .calendar-table__col {
    width: 46px;
 }
}
@media (min-width: 410px) {
  .calendar-table__header .calendar-table__col {
    width: 54px;
 }
}
.calendar-table__body .calendar-table__col {
  width: 40px;
  height: 42px;
  padding-bottom: 2px;
}
@media (min-width: 360px) {
  .calendar-table__body .calendar-table__col {
    width: 46px;
    height: 48px;
 }
}
@media (min-width: 410px) {
  .calendar-table__body .calendar-table__col {
    width: 54px;
    height: 56px;
 }
}

.calendar-table__body {
  position: relative;
  /* background-image: url(https://pms.simmega.com/images/company_logos/supergraphi.png);
  background-size: cover; */
}

.calendar-table__today .calendar-table__item {
  border-color: #86d8c9;
  background-color: #f0f9f7;
  -moz-box-shadow: 0px 3px 6px rgba(134, 216, 201, 0.3);
  -webkit-box-shadow: 0px 3px 6px rgba(134, 216, 201, 0.3);
  box-shadow: 0px 3px 6px rgba(134, 216, 201, 0.3);
  font-weight: 800;
}

/* Enhanced booking styles - More proportional and symmetric */
.calendar-table__event .calendar-table__item {
  background: linear-gradient(135deg, #66dcec 0%, #86d8c9 100%);
  border-color: #fefefe;
  -moz-box-shadow: 0px 3px 6px rgba(102, 220, 236, 0.4);
  -webkit-box-shadow: 0px 3px 6px rgba(102, 220, 236, 0.4);
  box-shadow: 0px 3px 6px rgba(102, 220, 236, 0.4);
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.calendar-table__event .calendar-table__item:hover {
  background: linear-gradient(135deg, #86d8c9 0%, #66dcec 100%);
  transform: scale(1.1);
  -moz-box-shadow: 0px 5px 12px rgba(102, 220, 236, 0.5);
  -webkit-box-shadow: 0px 5px 12px rgba(102, 220, 236, 0.5);
  box-shadow: 0px 5px 12px rgba(102, 220, 236, 0.5);
  z-index: 10;
}

/* Single day event - Full circle */
.calendar-table__event--single .calendar-table__item {
  border-radius: 50%;
  border: 2px solid #fff;
}

/* Long event styling - More subtle and proportional */
.calendar-table__event--long {
  overflow-x: visible;
  position: relative;
}

.calendar-table__event--long .calendar-table__item {
  border-radius: 0;
  border-width: 2px 0;
  background: linear-gradient(135deg, rgba(102, 220, 236, 0.85) 0%, rgba(134, 216, 201, 0.85) 100%);
}

/* Middle dates in range - subtle indicator */
.calendar-table__event--middle .calendar-table__item {
  background: linear-gradient(180deg, rgba(102, 220, 236, 0.3) 0%, rgba(134, 216, 201, 0.3) 100%);
  color: #424588;
  font-weight: 700;
}

.calendar-table__event--middle .calendar-table__item:hover {
  background: linear-gradient(180deg, rgba(102, 220, 236, 0.5) 0%, rgba(134, 216, 201, 0.5) 100%);
}

/* Start date of range */
.calendar-table__event--start .calendar-table__item {
  border-left: 2px solid #fff;
  border-radius: 50% 0 0 50%;
  background: linear-gradient(135deg, #66dcec 0%, rgba(102, 220, 236, 0.7) 100%);
}

.calendar-table__event--start.calendar-table__col:last-child .calendar-table__item {
  border-width: 2px;
  border-radius: 50%;
}

/* End date of range */
.calendar-table__event--end .calendar-table__item {
  border-right: 2px solid #fff;
  border-radius: 0 50% 50% 0;
  background: linear-gradient(135deg, rgba(134, 216, 201, 0.7) 0%, #86d8c9 100%);
}

.calendar-table__event--end.calendar-table__col:first-child .calendar-table__item {
  border-width: 2px;
  border-radius: 50%;
}

.calendar-table__inactive .calendar-table__item {
  color: #a7a7a7;
  cursor: default;
}
.calendar-table__inactive .calendar-table__item:hover {
  background: transparent;
  box-shadow: none;
}
.calendar-table__inactive.calendar-table__event .calendar-table__item {
  color: #fff;
  opacity: 0.25;
}
.calendar-table__inactive.calendar-table__event .calendar-table__item:hover {
  background: #66dcec;
  -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.events-container {
  padding: 0 15px;
}
.events__title {
  color: #bec1ca;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}
.events__tag {
  background: #66dcec;
  border: 2px solid #fefefe;
  -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 60px;
  margin-left: 16px;
  padding: 5px 2px;
  text-align: center;
}
.events__tag--highlighted {
  background: #fdca40;
}
.events__list {
  min-height: 200px;
}
.events__item {
  background: #fff;
  border-left: 8px solid #86d8c9;
  border-radius: 2px;
  -moz-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
  padding: 15px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.events__item--left {
  width: calc(100% - 76px);
}
.events__name {
  font-size: 12px;
  font-weight: 700;
  color: #222741;
  display: block;
  margin-bottom: 6px;
}
.events__date {
  font-size: 12px;
  color: #9faab7;
  display: inline-block;
}

.calendar-container__btn--left {
  color: #222741;
}

.calendar-container__btn--right {
  color: #222741;
}

/* .swal2-popup {
  height: 700px !important;
} */

.container form .form-row{
  display: flex;
  margin: 32px 0;
}
form .form-row .input-data{
  width: 100%;
  height: 40px;
  margin: 0 20px;
  position: relative;
}
form .form-row .textarea{
  height: 70px;
}
.input-data input,
.textarea textarea{
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  font-size: 17px;
  border-bottom: 2px solid rgba(0,0,0, 0.12);
}
.input-data input:focus ~ label, .textarea textarea:focus ~ label,
.input-data input:valid ~ label, .textarea textarea:valid ~ label{
  transform: translateY(-25px);
  font-size: 14px;
  color: #3498db;
}
.textarea textarea{
  resize: none;
  padding-top: 10px;
}
.input-data label{
  position: absolute;
  pointer-events: none;
  bottom: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  left: 0;
}
.textarea label{
  width: 100%;
  bottom: 40px;
  background: #fff;
}
.input-data .underline{
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 100%;
}
.input-data .underline:before{
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: #3498db;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  left: 0;
}
.input-data input:focus ~ .underline:before,
.input-data input:valid ~ .underline:before,
.textarea textarea:focus ~ .underline:before,
.textarea textarea:valid ~ .underline:before{
  transform: scale(1);
}

.input-data label {
  transform: translateY(-25px);
  font-size: 14px;
}

.input-data:has(.picker__input--active) label {
  color: #3498db; 
}

.picker__footer {
  display: none;
}

@media (max-width: 700px) {
  .container .text{
    font-size: 30px;
  }
  .container form{
    padding: 10px 0 0 0;
  }
  .container form .form-row{
    display: block;
  }
  form .form-row .input-data{
    margin: 35px 0!important;
  }
  .submit-btn .input-data{
    width: 40%!important;
  }
}

form input:focus {
  outline: none;
  box-shadow: none;
  border:none;
}

.scrollbar-activity {
  overflow-y: scroll;
  height: 100vh;
}

.scrollbar-activity::-webkit-scrollbar {
  padding: 5px;
  width: 0px; /* Adjust the width as needed */
  height: 0px;
}

.scrollbar-activity::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.65); /* Light grey track color */
  border-radius: 10px; /* Rounded corners for the track */
}

.scrollbar-activity::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3); /* Grey thumb color */
  border-radius: 10px; /* Rounded corners for the thumb */
  padding: 5px;
}

.scrollbar-activity::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3); /* Darker background on hover */
}

.scrollbar-activity::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5); /* Even darker background on click */
}

.swal2-html-container::-webkit-scrollbar {
  padding: 5px;
  width: 5px; /* Adjust the width as needed */
  height: 5px;
}

.swal2-html-container::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.65); /* Light grey track color */
  border-radius: 10px; /* Rounded corners for the track */
}

.swal2-html-container::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3); /* Grey thumb color */
  border-radius: 10px; /* Rounded corners for the thumb */
  padding: 5px;
}

.swal2-html-container::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3); /* Darker background on hover */
}

.swal2-html-container::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.5); /* Even darker background on click */
}

/* ==================== BOOKING TOOLTIP STYLES ==================== */
.booking-tooltip {
  position: fixed;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 0;
  z-index: 9999;
  max-width: 280px;
  min-width: 240px;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  border: 1px solid rgba(134, 216, 201, 0.2);
}

.booking-tooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.booking-tooltip__content {
  position: relative;
  padding: 14px 16px;
}

.booking-tooltip__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(134, 216, 201, 0.1);
  border: none;
  color: #99a4ae;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  z-index: 1;
}

.booking-tooltip__close:hover {
  background: rgba(134, 216, 201, 0.2);
  color: #86d8c9;
  transform: rotate(90deg);
}

/* Booking Item in Tooltip */
.booking-item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  padding-right: 20px;
}

.booking-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-item:first-child {
  padding-top: 0;
}

.booking-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #222741;
  margin-bottom: 6px;
  line-height: 1.3;
  display: block;
}

.booking-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-item__row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
}

.booking-item__icon {
  color: #86d8c9;
  font-size: 11px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.booking-item__label {
  color: #99a4ae;
  font-weight: 500;
  min-width: 60px;
  flex-shrink: 0;
}

.booking-item__value {
  color: #424588;
  font-weight: 600;
  flex: 1;
}

/* Badge for multiple bookings */
.booking-count-badge {
  display: inline-block;
  background: linear-gradient(135deg, #66dcec 0%, #86d8c9 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}

/* Responsive adjustments for tooltip */
@media (max-width: 414px) {
  .booking-tooltip {
    max-width: calc(100vw - 32px);
    min-width: 260px;
    left: 16px !important;
    right: 16px !important;
    transform: translateX(0) !important;
    margin: 0 auto;
  }
  
  .booking-tooltip.show {
    transform: translateY(0) scale(1) !important;
  }
  
  .booking-tooltip__content {
    padding: 12px 14px;
  }
  
  .booking-item__title {
    font-size: 13px;
  }
  
  .booking-item__row {
    font-size: 11px;
  }
  
  .booking-item__label {
    min-width: 50px;
  }
}

/* Enhanced responsive calendar */
@media (max-width: 360px) {
  .calendar-container {
    padding: 12px;
  }
  
  .calendar-container__title {
    font-size: 18px;
  }
  
  .calendar-table__body .calendar-table__col {
    width: 38px;
    height: 40px;
  }
  
  .calendar-table__header .calendar-table__col {
    width: 38px;
    font-size: 11px;
  }
}

@media (min-width: 415px) and (max-width: 768px) {
  .main-container-wrapper {
    max-width: 100%;
  }
  
  .calendar-table__body .calendar-table__col {
    width: calc((100vw - 60px) / 7);
    height: calc((100vw - 60px) / 7);
  }
  
  .calendar-table__header .calendar-table__col {
    width: calc((100vw - 60px) / 7);
  }
}

/* Smooth animation for events list */
.events__item {
  animation: fadeInUp 0.4s ease-out;
  animation-fill-mode: both;
}

.events__item:nth-child(1) { animation-delay: 0.1s; }
.events__item:nth-child(2) { animation-delay: 0.2s; }
.events__item:nth-child(3) { animation-delay: 0.3s; }
.events__item:nth-child(4) { animation-delay: 0.4s; }
.events__item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Improved inactive date styling */
.calendar-table__inactive .calendar-table__item {
  color: #d0d0d0;
  cursor: default;
  opacity: 0.5;
}

.calendar-table__inactive .calendar-table__item:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.calendar-table__inactive.calendar-table__event .calendar-table__item {
  background: rgba(102, 220, 236, 0.2);
  color: #a0a0a0;
}

.calendar-table__inactive.calendar-table__event .calendar-table__item:hover {
  background: rgba(102, 220, 236, 0.25);
  transform: none;
}

/* ==================== DONATION POPUP STYLES ==================== */
.donation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.donation-popup.show {
  display: flex;
  opacity: 1;
}

.donation-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.donation-popup__content {
  position: relative;
  margin: auto;
  background: #ffffff;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  max-height: 100%;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.donation-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.donation-popup__close:hover {
  background: #fff;
  color: #333;
  transform: rotate(90deg);
}

.donation-popup__banner {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.donation-popup__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donation-popup__banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.donation-popup__title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.donation-popup__title i {
  color: #ff6b6b;
  font-size: 28px;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20%, 40% { transform: scale(1); }
}

.donation-popup__body {
  padding: 24px;
}

.donation-popup__text {
  color: #424588;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.donation-popup__stats {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.donation-popup__stat {
  flex: 1;
  background: linear-gradient(135deg, #f0f9f7 0%, #e6f5f2 100%);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 12px;
  color: #424588;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.donation-popup__stat i {
  color: #86d8c9;
  font-size: 20px;
}

.donation-popup__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.donation-popup__btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
}

.donation-popup__btn--primary {
  background: linear-gradient(135deg, #66dcec 0%, #86d8c9 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 220, 236, 0.3);
}

.donation-popup__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 220, 236, 0.4);
}

.donation-popup__btn--secondary {
  background: #f5f5f5;
  color: #666;
}

.donation-popup__btn--secondary:hover {
  background: #e0e0e0;
}

.donation-popup__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.donation-popup__checkbox input {
  cursor: pointer;
}

/* ==================== DONATION PAGE STYLES ==================== */
.donation-page {
  background: linear-gradient(135deg, #f8fafa 0%, #e6f5f2 100%);
}

.donation-main {
  padding: 0;
}

.donation-container {
  padding: 20px 16px;
  max-width: 414px;
  margin: 0 auto;
}

.donation-header {
  text-align: center;
  padding: 20px 0 24px;
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.donation-header__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #66dcec 0%, #86d8c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(102, 220, 236, 0.3);
}

.donation-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #222741;
  margin: 0 0 8px 0;
}

.donation-header__subtitle {
  font-size: 13px;
  color: #99a4ae;
  margin: 0;
  padding: 0 20px;
  line-height: 1.5;
}

.donation-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.donation-info__card {
  background: #ffffff;
  padding: 12px 8px;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  color: #424588;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.donation-info__card i {
  color: #86d8c9;
  font-size: 18px;
}

.donation-methods {
  margin-bottom: 20px;
}

.donation-methods__title {
  font-size: 18px;
  font-weight: 700;
  color: #222741;
  margin: 16px 0 16px 0;
}

/* Payment Accordion */
.payment-accordion {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.payment-accordion:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-accordion__header {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-accordion__header:hover {
  background: #f8fafa;
}

.payment-accordion__header.active {
  background: linear-gradient(135deg, #f0f9f7 0%, #e6f5f2 100%);
}

.payment-accordion__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #222741;
}

.payment-accordion__title i {
  color: #86d8c9;
  font-size: 20px;
}

.payment-accordion__icon {
  color: #99a4ae;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.payment-accordion__header.active .payment-accordion__icon {
  transform: rotate(180deg);
}

.payment-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 16px;
}

.payment-accordion__content.active {
  max-height: 2000px;
  padding: 0 16px 20px;
}

.payment-accordion__desc {
  font-size: 13px;
  color: #666;
  margin: 16px 0 16px 0;
  line-height: 1.5;
}

/* QRIS Styles */
.qris-container {
  text-align: center;
  padding: 20px;
  background: #f8fafa;
  border-radius: 8px;
  margin-bottom: 16px;
}

.qris-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  background: #ffffff;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Bank Info Styles */
.bank-info {
  background: #f8fafa;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bank-info__logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.bank-info__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bank-info__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bank-info__label {
  font-size: 11px;
  color: #99a4ae;
  font-weight: 600;
  text-transform: uppercase;
}

.bank-info__value {
  font-size: 14px;
  color: #222741;
  font-weight: 700;
}

.bank-info__copy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-btn {
  background: #86d8c9;
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: #66dcec;
  transform: scale(1.05);
}

.copy-btn.copied {
  background: #4caf50;
}

.copy-btn.copied i:before {
  content: "\f00c";
}

/* WhatsApp Styles */
.whatsapp-info {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.whatsapp-info__icon {
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  flex-shrink: 0;
}

.whatsapp-info__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.whatsapp-info__label {
  font-size: 12px;
  color: #2e7d32;
  font-weight: 600;
}

.whatsapp-info__number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #1b5e20;
  font-weight: 700;
}

/* Payment Buttons */
.payment-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  text-decoration: none;
}

.payment-btn--download {
  background: linear-gradient(135deg, #66dcec 0%, #86d8c9 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(102, 220, 236, 0.3);
}

.payment-btn--download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 220, 236, 0.4);
}

.payment-btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.payment-btn--whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.payment-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: #fff3e0;
  border-left: 3px solid #ff9800;
  border-radius: 6px;
  font-size: 12px;
  color: #e65100;
  line-height: 1.5;
  margin-top: 16px;
}

.payment-note i {
  color: #ff9800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Donation Footer */
.donation-footer {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.donation-footer__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  color: #424588;
}

.donation-footer__item:first-child {
  border-bottom: 1px solid #f0f0f0;
}

.donation-footer__item i {
  color: #86d8c9;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.donation-footer__item p {
  margin: 0;
  line-height: 1.5;
}

.donation-footer__item a {
  color: #66dcec;
  font-weight: 600;
  text-decoration: none;
}

.donation-footer__item a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 360px) {
  .donation-popup__content {
    width: 95%;
  }
  
  .donation-popup__stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .donation-popup__actions {
    flex-direction: column;
  }
  
  .donation-info {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .donation-info__card {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px;
  }
  
  .bank-info {
    flex-direction: column;
    text-align: center;
  }
  
  .bank-info__logo {
    margin: 0 auto;
  }
}

@media (min-width: 415px) {
  .donation-container {
    padding: 24px 20px;
  }
  
  .donation-popup__content {
    max-width: 500px;
  }
}