/* static/style.css */

body {
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar-brand { font-weight: bold; font-size: 1.4rem; }
        .btn-primary, .btn-success { border-radius: 8px; }
        .card { border-radius: 12px; box-shadow: 0 0 10px rgba(0,0,0,0.05); }
.card {
  border: none;
  border-radius: 12px;
}

h2 {
  font-weight: 600;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

.alert {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}

.form-floating > .form-control {
  height: 3.4rem;
  padding: 1rem 0.75rem;
}
.tool-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Dashboard cards */
.tool-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .vh-100 {
    height: auto !important;
    padding: 2rem 1rem;
  }
}
