/* Shared styles between admin and user layouts */

/* Global font family */
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #6c757d;
}

label {
  color: #6c757d;
}

/* Custom navbar with white color */
.navbar-custom {
  background-color: #ffffff !important;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.navbar-custom .navbar-brand {
  color: #374151 !important;
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-custom .navbar-brand:hover {
  color: #111827 !important;
}

.navbar-custom .nav-link {
  color: #6b7280 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: #374151 !important;
}

.navbar-custom .btn-link {
  color: #6b7280 !important;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0.5rem 1rem;
}

.navbar-custom .btn-link:hover {
  color: #374151 !important;
}

/* Logo in navbar */
.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

/* User dropdown */
.navbar-custom .dropdown-toggle::after {
  margin-left: 0.5rem;
}

.navbar-custom .dropdown-menu {
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-custom .dropdown-item {
  color: #6b7280 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-custom .dropdown-item:hover {
  background-color: #f3f4f6;
  color: #374151 !important;
}

.navbar-custom .dropdown-item:focus {
  background-color: #f3f4f6;
  color: #374151 !important;
}

/* Custom table headers */
.table thead.table-dark th {
  background-color: #10035b !important;
}

.table-dark th {
  background-color: #10035b !important;
}

/* Table text color */
.table {
  color: #6c757d;
}

.table thead th {
  color: #6c757d;
}

.table tbody td {
  color: #6c757d;
}

/* Custom titles */
h1, h2 {
  color: #6c757d;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  color: #6c757d;
  font-weight: 700;
}

h4, h5, h6 {
  color: #6c757d;
}

.card-title {
  color: #6c757d !important;
}

.card-body {
  color: #6c757d;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-custom .navbar-brand {
    font-size: 1.25rem;
  }
  
  .navbar-logo {
    height: 32px;
  }
}