html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Dashboard */
.dashboard-header {
    padding: 1.5rem 0 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dashboard-clock {
    min-width: 180px;
}

.dashboard-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
    color: inherit;
}

.dashboard-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    border-color: #dee2e6;
    color: inherit;
}

.dashboard-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card-body {
    flex: 1;
    min-width: 0;
}

.dashboard-card-title {
    font-weight: 600;
    font-size: 1rem;
    color: #212529;
    margin-bottom: 2px;
}

.dashboard-card-desc {
    font-size: 0.82rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-card-arrow {
    color: #adb5bd;
    flex-shrink: 0;
}