send24-shipping-widget.css .send24-button {
  padding: 10px 20px;
  background-color: #d2691e;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  animation: blink 1s infinite;
}

.send24-button-alpha {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 10px;
  padding: 20px;
  border-radius: 10px;
  background-color: #f8f8f8;
  max-width: 600px;
  z-index: 999;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.send24-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.send24-modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 450px;
  max-height: 80vh; /* Set maximum height to 80% of viewport height */
  overflow-y: auto; /* Enable vertical scrolling */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Optional: Style the scrollbar for webkit browsers */
.send24-modal-content::-webkit-scrollbar {
  width: 4px;
}

.send24-modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.send24-modal-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.send24-modal-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.send24-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.send24-logo {
  width: 150px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.send24-shipping-option {
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 10px;
  background-color: #f9f9f9;
  position: relative;
}

.send24-shipping-label {
  font-weight: 600;
  color: #333;
  display: inline-block;
  margin-right: 10px;
  font-family: 'Inter', sans-serif;
}

.send24-shipping-price {
  float: right;
  font-weight: 600;
  color: #d2691e;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.send24-description {
  margin-top: 5px;
  font-size: 14px;
  color: #777;
  font-family: 'Inter', sans-serif;
}

.send24-confirm-button {
  padding: 10px 20px;
  background-color: #d2691e;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.send24-hub-text {
  font-style: italic;
  font-weight: bold;
  font-size: 14px;
  color: #127c3f;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}

.send24-hub-link {
  color: #127c3f;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #d2691e;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.send24-hub {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
}

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

.send24-nearbyhubs {
  display: none;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
}

.send24-nearbyhubslist {
  list-style: none;
  padding-left: 0;
}

.send24-nearbyhubslistdetail {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.send24-nearbyubslistlabel {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.send24-time-delivery {
  background: #f8f9fa;
  padding: 2px;
  border-radius: 10px;
}

.send24-time-option {
  background: white;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.time-option-content {
  display: flex;
  width: 100%;
}

.time-option-left {
  display: flex;
  align-items: flex-start; /* Changed from center to flex-start */
  gap: 10px;
  flex: 1;
}

.time-option-radio {
  position: relative;
  margin-top: 3px; /* Adjust to align with title */
}

.time-option-radio input[type='radio'] {
  display: none;
}

.time-option-radio .custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.time-option-radio input[type='radio']:checked + .custom-radio {
  border-color: #ff6600;
  background: #ff6600;
}

.time-option-radio input[type='radio']:checked + .custom-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.time-option-details {
  display: flex;
  flex-direction: column;
}

.delivery-title {
  font-weight: bold;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.delivery-date {
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

.time-option-price {
  margin-left: auto;
}

.price-badge {
  background: #22c55e;
  color: white;
  padding: 5px 12px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
}

.send24-hidden {
  display: none !important;
}
