/* DEV.CLOUD styles */
:root {
  --brand-primary: #0d6efd;
  --brand-gradient: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
}

body {
  background: #f7f8fb;
}

.navbar-brand {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1020;
  backdrop-filter: blur(6px);
}

.hero-bar {
  background: var(--brand-gradient);
  color: #fff;
}

.card {
  border-radius: 0.75rem;
  border: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.10); }

.btn-lg { padding-top: 0.8rem; padding-bottom: 0.8rem; }

#overtime-badge { margin-left: .5rem; }

.brand-logo { height: 28px; width: auto; }

.progress { height: .65rem; border-radius: 1rem; overflow: hidden; }
.progress-bar { transition: width .6s ease; }

.table thead th { color: #6b7280; font-weight: 600; text-transform: uppercase; font-size: .8rem; }
.table-striped tbody tr:hover { background-color: rgba(13,110,253,.05); }

.toast-container { z-index: 2000; } 