body {
    font-family: sans-serif;
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    color: #cc0000; /* Shameful red */
}

hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #ccc;
}

#parking-display {
    margin: 20px 0;
    min-height: 300px; /* Prevent layout jump while loading */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

#parking-image {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

#loading-message {
    color: #555;
}

#voting-buttons button {
    padding: 15px 30px;
    font-size: 1.2em;
    margin: 10px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    color: white;
    transition: background-color 0.2s ease;
}

#shame-button {
    background-color: #e74c3c; /* Red */
}
#shame-button:hover {
    background-color: #c0392b;
}

#forgive-button {
    background-color: #2ecc71; /* Green */
}
#forgive-button:hover {
    background-color: #27ae60;
}

#upload-form {
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

#upload-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

#upload-form input[type="file"] {
    display: block;
    margin: 0 auto 15px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#upload-form button {
     padding: 10px 20px;
     font-size: 1em;
     cursor: pointer;
     border: none;
     border-radius: 5px;
     color: white;
     background-color: #3498db; /* Blue */
}
#upload-form button:hover {
    background-color: #2980b9;
}
#upload-form button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}


#upload-status, #vote-result {
    margin-top: 10px;
    font-weight: bold;
}