/* ---------------------------------------------------------------------------
   Intelivix Secrets Manager
   --------------------------------------------------------------------------- */

:root {
  --brand-primary: #1a3a5c;
  --brand-dark: #0f2640;
}

body {
  background-color: #f5f7fa;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* Navbar */
.bg-navbar {
  background-color: var(--brand-dark) !important;
}

/* Login page */
.login-bg {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
  margin-top: -1.5rem;
}

.brand-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-primary), #2a6496);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.75rem;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #dee2e6;
}

.divider:not(:empty)::before {
  margin-right: 0.75rem;
}

.divider:not(:empty)::after {
  margin-left: 0.75rem;
}

/* Credential cards */
.credential-card {
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.15s ease;
}

.credential-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Secret mask */
.secret-mask {
  font-family: monospace;
  letter-spacing: 2px;
  color: #6c757d;
}

.secret-revealed {
  font-family: monospace;
  color: #198754;
  background-color: #f0fdf4;
  padding: 2px 6px;
  border-radius: 4px;
  word-break: break-all;
}

/* Tables */
.table th {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: #64748b;
}
