/* nominees.css */
body {
    font-family: 'Poppins', sans-serif; /* Modern, rounded font */
    margin: 0;
    background: #f0f0f0; /* Light gray background */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    overflow-x: hidden;
}

header {
    background-color: #fff; /* White header */
    color: #2196f3; /* Blue header text */
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between; /* Space between title and button */
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 0;
    font-weight: 700;
}

#homeButton {
    background-color: #2196f3;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#homeButton:hover {
    background-color: #1976d2;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 90%;
    max-width: 1000px;
    margin-top: 20px;
}

.category {
    margin-bottom: 20px;
    width: 100%;
    background-color: #fff; /* White category background */
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* More pronounced shadow */
    border: 1px solid #eee; /* Light gray border */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Add transitions */
}

.category:hover {
    transform: translateY(-3px); /* Slightly lift on hover */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.category h2 {
    color: #2196f3; /* Blue category title */
    border-bottom: 2px solid #2196f3; /* Blue underline */
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.6em;
    font-weight: 600;
}

.category ul {
    list-style-type: none;
    padding-left: 0;
}

.category li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 5px;
    font-size: 1.1em;
    transition: background-color 0.2s ease;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically align content */
}

.category li:hover {
    background-color: #f5f5f5;
}

.category li:last-of-type {
    border-bottom: none;
}

.seen::before {
    content: '\f00c'; /* Font Awesome checkmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #4caf50; /* Green checkmark */
}

.error {
    color: #f44336;
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
}

.watchers-container {
    display: flex;
    align-items: center; /* Vertically align images */
}

.user-face {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
    border: 1px solid white;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seen-counter {
    font-size: 1em;
    font-weight: 500;
    color: #2196f3;
    background: #e3f2fd;
    padding: 5px 10px;
    border-radius: 5px;
}


footer {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}
