/* Custom font loading - directly from your website */
@font-face {
  font-family: 'Neue Montreal Regular';
  src: url('https://computle.com/fonts/Neue-Montreal-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Montreal Medium';
  src: url('https://computle.com/fonts/Neue-Montreal-Medium-500.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Global styles */
body {
  background-color: #f8f9fa;
  font-family: 'Neue Montreal Regular', Arial, sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5, h6, .card-title, .btn, .nav-link {
  font-family: 'Neue Montreal Medium', Arial, sans-serif;
}

/* Header styling */
header {
  background-color: #1a1a1a !important;
  padding: 1.5rem 0 !important;
}

header h1 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

header p {
  opacity: 0.8;
  margin-bottom: 0;
}

/* Card styling */
.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08) !important;
  border: none;
}

.card-title {
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* Form elements */
.form-label {
  font-weight: 500;
  color: #555;
}

.form-select, .form-control {
  border-radius: 6px;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

.form-select:focus, .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

/* Buttons */
.btn {
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #0062cc;
  border-color: #0062cc;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

#downloadQuote {
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* Pricing cards styling */
.card-header {
  padding: 1rem;
}

/* Footer */
footer {
  background-color: #1a1a1a !important;
  margin-top: 4rem !important;
  padding: 2rem 0 !important;
}

/* Admin-specific styles */
.nav-tabs .nav-link {
  color: #555;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
}

.nav-tabs .nav-link.active {
  font-weight: 600;
  color: #0062cc;
  border-bottom-color: #0062cc;
}

.table th {
  font-family: 'Neue Montreal Medium', Arial, sans-serif;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }
  
  .card-body {
    padding: 1.25rem;
  }
}