/* Variables Affecting Global UI */
:root {
    --muted: hsl(210, 10%, 70%); /* or whatever muted tone is prefered */
}

/* Link Styles */
.centered-link {
    display: inline-block;
    text-align: center;
}

/* Text Alignment */
.centered-text {
    text-align: center;
}

.darkblue-link {
    color: darkblue;
    text-decoration: none;
    font-size: 24px; /* Adjust the font size as needed */
}

.darkblue-link:hover {
    text-decoration: underline;
}

.subpage-link-block {
    border: 1px solid #1f2937;
    background: #e2e8f0;
    padding: 1rem 1.2rem;
    margin: 1.2rem 0;
    border-radius: 8px;
}

.ad-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ad-list li {
  padding: 6px 0;
  border-bottom: 1px solid #d1d5db;
}

.ad-list li:last-child {
  border-bottom: none;
}

.ad-list a {
  text-decoration: none;
  font-size: 0.95rem;
}

/* General Styles */
body {
    background-color: white;
    color: black;
    font-family: Arial, sans-serif;
}

footer {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
}
 
/* Table Styles */
table {
    border-collapse: collapse;
    width: 100%;
    font-size: 24px;
}

td, th {
    border: 3px solid black;
    text-align: center;
    padding: 8px;
}

a {
    color: darkblue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.centered-text {
    text-align: center;
}

/* Heading Styles */
h1, h2 {
    text-align: center;
    color: black;
}

/* Paragraph Styles */
p {
    color: black;
    text-align: left;
}

/* Special Styles */
.email-link {
    color: blue;
    text-align: center;
}

.email-link a {
    color: blue;
}

.fun-section {
    color: blue;
    text-align: center;
}

/* Media Query for Mobile Devices */
@media (max-width: 600px) {
    table, td, th {
        font-size: 24px !important; /* Ensures this rule takes precedence */
    }
}