/* Advanced Travel CRM Styles */
.atc-tabs-container {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.atc-tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  background: #f9fafb;
}

.atc-tab {
  flex: 1;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  color: #6b7280;
}

.atc-tab:hover {
  background: #f3f4f6;
}

.atc-tab.active {
  border-bottom-color: #3b82f6;
  color: #1e40af;
  background: white;
}

.atc-tab-content {
  display: none;
  padding: 2rem;
}

/* ==================== CUSTOM REQUEST ==================== */
.atc-custom-request-wrapper {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.atc-custom-request-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid #d4af37;
}

.atc-custom-request-header h2 {
  margin: 0 0 15px;
  font-size: 32px;
  color: #0a1f44;
}

.atc-custom-request-header p {
  margin: 0;
  font-size: 16px;
  color: #64748b;
}

.atc-custom-request-form .atc-form-field {
  margin-bottom: 25px;
}

.atc-custom-request-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #334155;
  font-size: 15px;
}

.atc-custom-request-form input,
.atc-custom-request-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.atc-custom-request-form input:focus,
.atc-custom-request-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.atc-custom-request-note {
  text-align: center;
  margin-top: 20px;
  color: #64748b;
  font-size: 14px;
}

.atc-btn-large {
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
}

.atc-tab-content.active {
  display: block;
}

.atc-form-field {
  margin-bottom: 1.5rem;
}

.atc-form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.atc-form-field input,
.atc-form-field select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.atc-form-field input:focus,
.atc-form-field select:focus {
  outline: none;
  border-color: #3b82f6;
}

.atc-total {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 1.5rem 0;
  color: #10b981;
  text-align: center;
  padding: 1rem;
  background: #f0fdf4;
  border-radius: 8px;
}

.atc-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  width: 100%;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.atc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.atc-btn:active {
  transform: translateY(0);
}

.atc-btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  display: inline-block;
  width: auto;
}

.atc-message {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
}

.atc-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.atc-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.atc-dashboard {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.atc-user-bookings-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.atc-user-bookings-table th {
  background: #f3f4f6;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #e5e7eb;
}

.atc-user-bookings-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.atc-status-pending {
  background: #fef3c7;
  color: #92400e;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.atc-status-confirmed {
  background: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.atc-status-cancelled {
  background: #fee2e2;
  color: #991b1b;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.atc-notice {
  padding: 1rem;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 8px;
  text-align: center;
}

.atc-auth-form {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.atc-auth-form h3 {
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.atc-auth-form p {
  margin-bottom: 1rem;
}

.atc-auth-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.atc-auth-form input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
}

.atc-loading {
  text-align: center;
  padding: 2rem;
  color: #6b7280;
}