.estimate-service-fee-container {
  position: relative;
  padding: 30px;
  /* Replace the select dropdown with custom buttons for method */
}
.estimate-service-fee-container #loading-spinner {
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.estimate-service-fee-container .spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 0.8s linear infinite;
  margin-top: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.estimate-service-fee-container h3 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #1A2141;
  margin-bottom: 30px;
}
.estimate-service-fee-container h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1A2141;
  margin-bottom: 15px;
}
.estimate-service-fee-container .elementor-form-fields-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.estimate-service-fee-container .elementor-field-group {
  flex: 1 1 200px;
}
.estimate-service-fee-container select,
.estimate-service-fee-container input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.estimate-service-fee-container #delivery_type {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: none;
  border: none;
}
.estimate-service-fee-container #delivery_type option {
  display: none;
}
.estimate-service-fee-container .custom-tabs {
  display: flex;
  width: 100%;
  gap: 15px;
  margin-bottom: 20px;
}
.estimate-service-fee-container .custom-tab {
  flex: 1;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 8px;
  background: #f9f9f9;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  color: #1A2141;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.estimate-service-fee-container .custom-tab.active {
  background: linear-gradient(to right, #ff5a00, #a40000);
  color: white;
  border-color: transparent;
}
.estimate-service-fee-container .custom-tab.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.estimate-service-fee-container .elementor-button {
  display: block;
  width: 100%;
  background-color: #a40000;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 20px;
}
.estimate-service-fee-container .elementor-button:hover {
  background-color: #c00000;
}
.estimate-service-fee-container .estimate-total-fee {
  display: none;
  font-size: 26px;
  font-weight: bold;
  color: #1A2141;
  text-align: center;
  margin: 20px 0;
  padding: 0 20px;
}
.estimate-service-fee-container #reset {
  background-color: #ccc;
  color: #333;
  margin-top: 10px;
}
