/* style.css - Unified Styling for EdTools (Admin + Public) */

body {
  font-family: 'Segoe UI', sans-serif;
  color: #1f2937;
  background-color: #f9fafb;
}

h1, h2, h3 {
  font-weight: 700;
  color: #1e3a8a; /* EdTools Blue */
}

label {
  font-weight: 600;
  color: #374151;
}

input,
select,
textarea {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem;
  width: 100%;
  font-size: 1rem;
  margin-top: 0.25rem;
}

button,
.button {
  background-color: #2563eb;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover,
.button:hover {
  background-color: #1d4ed8;
}

footer {
  background-color: #f3f4f6;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

/* Cards and Panels */
.panel {
  background-color: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.panel h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1e40af;
}

/* Table Style */
table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #f1f5f9;
  text-align: left;
}

th, td {
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.875rem;
}

tr:hover {
  background-color: #f9fafb;
}

/* Navigation links */
nav a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
  color: #1d4ed8;
}

/* Hero Buttons */
.hero-btn {
  display: inline-block;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  transition: background-color 0.3s;
}

.hero-btn.primary {
  background-color: #2563eb;
  color: white;
}

.hero-btn.primary:hover {
  background-color: #1d4ed8;
}

.hero-btn.secondary {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #2563eb;
}

.hero-btn.secondary:hover {
  background-color: #f3f4f6;
}

/* Print overrides */
@media print {
  body {
    background: white;
    color: black;
  }
  .no-print {
    display: none !important;
  }
  .print-container {
    padding: 0;
    border: none;
  }
}
.card {
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 1.5rem;
}

.hero-btn, .button {
  background-color: #2563eb;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  transition: background-color 0.2s ease;
  display: inline-block;
}

.hero-btn:hover, .button:hover {
  background-color: #1d4ed8;
}