/* public/css/style.css */

body {
  background-color: #f4f6f9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.table thead {
  background-color: #212529;
  color: #fff;
}

.login-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f2933 0%, #324a5f 100%);
  padding: 1rem;
}

.login-card {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
}

.module-placeholder {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6c757d;
}

.module-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #adb5bd;
}
