html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f8f9fa; /* Soft gray background */
  color: #333;
}

.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: 30px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 30px;
  line-height: 30px;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  z-index: 1030;
  font-size: 0.85rem;
}

.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;
}

/* Log Terminal Styles */
.log-terminal {
    background-color: #1e1e1e;
    color: #d4d4d4;
    height: 600px;
    overflow-y: auto;
    font-size: 0.85rem;
}

.log-terminal-header {
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.log-time {
    color: #888888;
}

.log-info {
    color: #4af626;
}

.log-warn {
    color: #ffcc00;
}

.log-error {
    color: #ff4444;
    font-weight: bold;
}