/* ==========================================================================
   LeaseTrack - Base Application & Form Utilities (app.css)
   ========================================================================== */

body {
  font-size: 0.95rem;
}

/* Card Typography & Layout */
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.card-body {
  padding: 1.25rem;
}

/* Page Typography */
.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: #64748b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.section-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

/* Form Elements & Controls */
.form-label {
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border-radius: 10px;
  min-height: 46px;
  border: 1px solid #cbd5e1;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--lt-primary);
  box-shadow: 0 0 0 3px var(--lt-primary-glow, rgba(29, 78, 216, 0.15));
}

textarea.form-control {
  min-height: 120px;
}

/* Buttons & Tables */
.btn {
  border-radius: 10px;
  font-weight: 600;
}

.table {
  vertical-align: middle;
}

/* Form Container Wrappers */
.form-card {
  max-width: 900px;
  margin: 0 auto;
}

.border-danger {
  max-width: 800px;
  margin: auto;
}


