/* LLT Backend — shared styles */

body {
  background-color: #FAFAF7;
  font-family: 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
}

/* ── Login page ── */
.login-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
  padding: 1rem;
}

.login-card {
  max-width: 400px;
  width: 100%;
  border: 0;
  border-radius: 1rem;
}

/* ── Hub page module cards ── */
.module-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  background: #fff;
}

.module-card-active {
  cursor: pointer;
  color: #212529;
}

.module-card-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #0d6efd;
}

.module-card-placeholder {
  border-style: dashed;
  background-color: #f8f9fa;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ── Navbar ── */
.navbar-brand {
  font-size: 1.1rem;
}
