/* Global Body */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #222;
}

/* Header */
header {
    background: #222;
    color: #fff;
    padding: 25px;
    text-align: center;
}

/* Navigation Bar */
nav {
    background: #444;
    padding: 12px;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main Content Container */
.container {
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Legend Box */
.legend-box {
    background: #f0f0f0;
    padding: 15px;
    border-left: 5px solid #FF8000;
    border-radius: 6px;
    margin-bottom: 25px;
}

.legend-box ul {
    margin: 0;
    padding-left: 20px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.9rem;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

th {
    background: #eee;
}

/* Category Column */
.cat {
    background: #FF8000;
    font-weight: bold;
    color: #000;
}

/* Color-coded cells */
.free1 { background: #B4C7DC; }
.free2 { background: #FFBF00; }
.free3 { background: #FFE994; }
.paid1 { background: #BBE33D; }
.paid2 { background: #CCCCCC; }

/* Highlight Text */
.highlight {
    color: red;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: #555;
}

/* Donation Button */
.donate-button {
    background: #6A00FF;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.website-button {
    background: #28A745;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 6px;
}

.website-button:hover {
    background: #1F7F35;
}

.site-logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}


