.vote-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.vote-card:hover {
    transform: translateY(-5px);
}

.nominee {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.nominee img {
    border-radius: 50%;
    margin-right: 10px;
}

button {
    padding: 8px 16px;
    border: none;
    background-color: #f4f4f4;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

button:hover {
    background-color: #ddd;
}

.vote-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nominee-card:hover {
    background-color: #f9fafb;
}

.selected-nominee {
    background-color: #e53e3e;
    color: white; 
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
}


.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

#community-awards-form input[type="submit"] {
    background: #3498db;
    color: white;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
}

#community-awards-form input[type="submit"]:hover {
    background: #2980b9;
}
.voter-form {
    margin-top: 50px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px; /* Round the corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Match the shadow of the category card */
    transition: all 0.3s ease; /* Smooth transition on hover */
}

.voter-form:hover {
    transform: translateY(-2px); /* Slight hover effect */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Increase shadow on hover */
}

.voter-form h3 {
    font-size: 1.75rem;
    color: #1a202c; /* Dark text color */
    margin-bottom: 15px;
}

.voter-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0; /* Lighter border */
    border-radius: 8px;
    font-size: 1rem;
    color: #4a5568; /* Slightly dark text color for input */
}

.voter-form input:focus {
    border-color: #FE012F; /* Highlight border on focus */
    outline: none;
}

.voter-form button {
    width: 100%;
    padding: 12px;
    background-color: #FE012F; /* Red button */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.voter-form button:hover {
    background-color: #C2185B; /* Darker red on hover */
}

.voter-form input::placeholder {
    color: #9CA3AF; /* Placeholder text color */
}
