/* style.css */

/* Reset */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* Main container (centers page) */
.container {
    width: 95%;
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1, h2, h3 {
    text-align: center;
    color: #004080; /* dark blue */
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
table th, table td {
    border: 1px solid #ccc;
    padding: 8px 12px;
    text-align: center;
}
table th {
    background: #004080;
    color: #fff;
}

/* Forms */
form label {
    font-weight: bold;
}
form input, form select, form button {
    width: 100%;
    padding: 8px;
    margin: 6px 0 12px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background: #004080;
    color: #fff;
    border: none;
    cursor: pointer;
}
form button:hover {
    background: #0066cc;
}

/* Links */
a {
    color: #004080;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.accordion {
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  background: #0073e6;
  color: #fff;
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion-header:hover {
  background: #005bb5;
}

.accordion-body {
  display: none;
  padding: 12px;
  background: #f9f9f9;
}

.accordion.open .accordion-body {
  display: block;
}

.accordion .arrow {
  transition: transform 0.3s;
}

.accordion.open .arrow {
  transform: rotate(180deg);
}

