/* Login page styles */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  max-width: 400px;
  width: 100%;
}

.login-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-container img {
  height: 60px;
  margin-bottom: 1rem;
}

.btn-login {
  width: 100%;
  padding: 0.75rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  transition: transform 0.2s;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.input-group-text {
  background: transparent;
  border-right: none;
}

.form-control {
  border-left: none;
}

.form-control:focus + .input-group-text {
  border-color: #667eea;
}

/* Navbar background */
.navbar-custom {
  background-color: #e3f2fd;
}

/* Dashboard styles */
body.dashboard {
  background-color: #f5f7fa;
}

.sidebar {
  min-height: 100vh;
}

.brand-img {
  height: 36px;
}

.metric-card {
  border-left: 4px solid rgba(13,110,253,.25);
}

.card-compact .card-body {
  padding: 1rem;
}

.hero-img {
  background-size: cover;
  background-position: center;
  filter: saturate(.8) brightness(.7);
}

.muted-action {
  font-size: .9rem;
}

.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Inline form styles */
.form-inline-display {
  display: inline;
}

/* Table cell styles */
.table-cell-key {
  width: 40%;
  font-weight: 500;
}

/* Logo styles */
.navbar-logo {
  height: 40px;
  width: auto;
}