.ccc-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.ccc-title {
  text-align: center;
  color: #4caf50;
  margin-bottom: 20px;
  font-size: 24px;
}

.ccc-progress-container {
  margin-bottom: 20px;
}

.ccc-progress-bar {
  width: 100%;
  height: 5px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.ccc-progress {
  width: 0;
  height: 100%;
  background-color: #4caf50;
  transition: width 0.3s ease;
}

.ccc-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.ccc-step-indicator {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.ccc-step-indicator.active {
  background-color: #4caf50;
  color: #fff;
}

.ccc-step {
  display: none;
}

.ccc-step h3 {
  margin-bottom: 15px;
  color: #333;
}

.ccc-input-group {
  margin-bottom: 15px;
}

.ccc-input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.ccc-input-group input[type="text"],
.ccc-input-group input[type="tel"],
.ccc-input-group input[type="date"],
.ccc-input-group input[type="time"],
.ccc-input-group input[type="number"],
.ccc-input-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.ccc-checkbox-group {
  margin-bottom: 10px;
}

.ccc-checkbox-group input[type="checkbox"] {
  margin-right: 5px;
}

.ccc-btn {
  background-color: #4caf50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.ccc-btn:hover {
  background-color: #45a049;
}

.ccc-btn-primary {
  background-color: #2196f3;
}

.ccc-btn-primary:hover {
  background-color: #1e87db;
}

.ccc-form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.ccc-form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

#total-cost {
  font-size: 18px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  color: #4caf50;
}

.ccc-total-cost {
  font-size: 24px;
  color: #2196f3;
}

.ccc-error {
  border-color: #ff0000 !important;
}

.ccc-error-message {
  color: #ff0000;
  font-size: 12px;
  margin-top: 5px;
}

.ccc-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.ccc-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  text-align: center;
}

.ccc-modal-actions {
  margin-top: 20px;
}

.ccc-modal-actions button {
  margin: 0 10px;
}

.ccc-loading {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ccc-spinner {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #4caf50;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

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

@media (max-width: 600px) {
  .ccc-form-container {
    padding: 10px;
  }

  .ccc-title {
    font-size: 20px;
  }

  .ccc-btn {
    font-size: 14px;
    padding: 8px 12px;
  }

  .ccc-total-cost {
    font-size: 20px;
  }
}

