* {
  box-sizing: border-box;
}

body {
  background-color: #dbd3ba;
}

a, a:hover, a:active, a:visited {
  text-decoration: none;
  color: initial;
}

img {
  max-width: 100%;
  height: auto;
}

footer {
  margin-top: 20px;
  width: 100%;
}

/* Lead Capture Form Styles */
.lead-capture-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.lead-capture-card h3 {
  color: #333;
  font-weight: 600;
}

.lead-capture-card .form-label {
  font-weight: 500;
  color: #555;
}

.lead-capture-card .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 0.6rem;
}

.lead-capture-card .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.lead-capture-card .btn-primary {
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 5px;
}

/* Dashboard Styles */
.dashboard-container {
  padding-top: 20px;
}

.sidebar {
  min-height: 100vh;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
}

.sidebar .nav-link {
  color: #333;
  padding: 0.75rem 1rem;
  font-weight: 500;
  border-radius: 5px;
  margin-bottom: 0.25rem;
}

.sidebar .nav-link:hover {
  background-color: #f8f9fa;
}

.sidebar .nav-link.active {
  background-color: #0d6efd;
  color: white;
}

.sidebar .card {
  border: none;
  background-color: #f8f9fa;
}

.table-responsive {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table thead th {
  background-color: #f8f9fa;
  font-weight: 600;
  border-bottom: 2px solid #dee2e6;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

.btn-sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
}

#searchInput {
  border-radius: 5px;
}

.form-select {
  border-radius: 5px;
}

/* Login Page Styles */
.card {
  border: none;
  border-radius: 10px;
}

.card-body h2 {
  color: #333;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sidebar {
    min-height: auto;
  }
  
  .lead-capture-card {
    padding: 1.5rem;
  }
}
