/* ===========================
   Custom CRM Styles
   =========================== */

/* General body */
body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  color: #333;
}

/* Navbar */
.navbar {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Footer */
footer {
  border-top: 1px solid #dee2e6;
  padding-top: 0.8rem;
}

/* Cards */
.card {
  border-radius: 0.5rem;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Tables */
.table {
  border-radius: 0.5rem;
  overflow: hidden;
}
.table th {
  background-color: #f1f3f5;
  font-weight: 600;
}
.table-hover tbody tr:hover {
  background-color: #f9fbfd;
}

/* Buttons */
.btn {
  border-radius: 0.4rem;
  font-weight: 500;
}
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-success {
  background-color: #198754;
}
.btn-danger {
  background-color: #dc3545;
}
.btn-secondary {
  background-color: #6c757d;
}

/* Forms */
.form-label {
  font-weight: 500;
}
.form-control {
  border-radius: 0.35rem;
}
textarea.form-control {
  resize: vertical;
}

/* Alerts */
.alert {
  border-radius: 0.4rem;
  font-size: 0.9rem;
}

/* Badges */
.badge {
  font-size: 0.8rem;
  padding: 0.5em 0.75em;
  border-radius: 0.4rem;
}

/* Utility tweaks */
.text-muted {
  color: #6c757d !important;
}
