/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
    border-bottom: 4px solid #388E3C;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

/* Main Content */
main {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}

main section {
    margin-bottom: 2rem;
}

main section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5 {
    color: #333;
    margin: 20px 0 10px;
}

h1 {
    font-size: 2.5rem;
    text-align: center;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.75rem;
    margin-top: 15px;
}

h4 {
    font-size: 1.5rem;
    margin-top: 10px;
}

h5 {
    font-size: 1.25rem;
    font-style: italic;
}

/* Paragraphs and Lists */
p {
    margin: 10px 0;
}

ul {
    margin: 10px 0;
    padding-left: 20px;
}

li {
    margin: 5px 0;
}

/* Links */
a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Tables */
table.staff {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table.staff th, table.staff td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

table.staff th {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

table.staff tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Thumbnails */
.thumbnail {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Circular thumbnails */
    object-fit: cover; /* Maintains aspect ratio without distortion */
    display: block;
    margin: auto;
}

/* Blockquotes */
blockquote {
    font-style: italic;
    color: #666;
    margin: 10px 20px;
    padding-left: 10px;
    border-left: 4px solid #ddd;
}

/* Code Blocks */
code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f4f4f4;
    padding: 2px 4px;
    border-radius: 4px;
    color: #d6336c;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 1rem;
    }

    table.staff th, table.staff td {
        font-size: 0.9rem;
    }
}
