/* Education Page - Rainy Glow Theme */

body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(to bottom right, #dfeff7, #cad9eb);
  color: #1a1a1a;
}

/* Container styling */
.pagecontainer {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 20, 60, 0.1);
  border-radius: 10px;
}

/* Header */
.edu-header h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #2b3e5f;
  font-weight: bold;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #aac2e3;
  padding-bottom: 0.5rem;
}

/* Table styling */
.edu-table-section {
  overflow-x: auto;
}

.edu-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f3f8ff;
  box-shadow: 0 2px 5px rgba(0, 20, 60, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.edu-table th,
.edu-table td {
  padding: 1rem;
  border: 1px solid #c0d2e3;
  text-align: center;
  vertical-align: top;
  font-size: 1rem;
}

.edu-table th {
  background-color: #aac2e3;
  color: #fff;
  font-weight: 600;
}

.edu-table td {
  background-color: #fdfefe;
}

/* Download buttons */
.download-buttons {
  margin-top: 2rem;
  text-align: center;
}

.download-btn {
  display: inline-block;
  margin: 0.5rem 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to bottom right, #5b8ec6, #3a6693);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 20, 60, 0.15);
}

.download-btn:hover {
  background: linear-gradient(to bottom right, #3a6693, #5b8ec6);
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .edu-table th,
  .edu-table td {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .download-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}
