body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #0056b3;
}

/* Tab Buttons Styling */
.tab-buttons {
    display: flex; /* Arranges buttons horizontally */
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

.tab-button {
    background-color: #f1f1f1;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.3s;
    font-size: 12px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-right: 5px; /* Spacing between buttons */
}

.tab-button:hover {
    background-color: #D05151;
}

.tab-button.active {
    background-color: #D05151;
    color: white;
    border-bottom: 1px solid #D05151; /* To hide the bottom border of the tab-buttons container */
}

/* Tab Content Styling */
.tab-content {
    display: none; /* Hide all tab content by default */
    padding: 10px 0;
    border-top: none;
}

.tab-content.active {
    display: block; /* Show the active tab content */
}

/* PDF List Styling (from previous example) */
.pdf-list {
    list-style-type: none; /* Removes default bullet points */
    padding: 0;
}
.pdf-list li {
    margin-bottom: 8px;
}
.pdf-list a {
    text-decoration: none; /* Removes underline from links */
    color: #D05151; /* Blue link color */
    display: block; /* Makes the whole list item clickable */
    padding: 5px 0;
}
.pdf-list a:hover {
    text-decoration: underline; /* Underline on hover */
}
.pdf-icon::before {
    content: "📄 "; /* Unicode for a document icon (optional) */
    margin-right: 5px;
}