/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 0 20px;
}

/* Header styling */
header {
    background-color: #34495e;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Navigation styling */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #2c3e50;
    border-radius: 5px;
}

/* Main content sections */
main {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

main h2 {
    color: #34495e;
    margin-bottom: 10px;
}

main p {
    margin-bottom: 15px;
}

/* Footer styling */
footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

footer a {
    color: #1abc9c;
    text-decoration: underline;
}

/* Section formatting for gallery and voting pages */
.gallery img, .vote img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

/* Table styling for categories */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #2c3e50;
    color: #fff;
}

td {
    background-color: #ecf0f1;
}
