.enquiry-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.enquiry-table {
  width: 100%;
  border-spacing: 10px;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.enquiry-table input,
.enquiry-table select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background: #007bff;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

button:disabled {
  background: #aaa;
}

.loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin-left: 8px;
  animation: spin 0.8s linear infinite;
}

.hidden {
  display: none;
}

.required {
  color: red;
  margin-left: 2px;
  font-weight: bold;
}

.error,
.error-message {
  display: block;
  color: red;
  font-size: 0.8rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .enquiry-table td.label {
    display: block;
    width: 100%;
    font-weight: bold;
    margin-top: 8px;
  }
  .enquiry-table td.colon {
    display: none;
  }
  .enquiry-table td {
    display: block;
    width: 100%;
  }
}

.btn-success {
  display: inline-block;
  background: #28a745;
  color: #fff !important;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 5px;
  transition: background 0.2s;
}
.btn-success:hover, .btn-success:focus {
  background: #218838;
  color: #fff;
  text-decoration: none;
}

.copy-btn {
  background: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 4px;
  padding: 2px 10px;
  margin-left: 8px;
  font-size: 0.95em;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.2s;
}
.copy-btn:hover, .copy-btn:focus {
  background: #b2ffb2;
}
