.sivuehdotukset-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.sivuehdotukset-form .form-group {
    margin-bottom: 15px;
}

.sivuehdotukset-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.sivuehdotukset-form input[type="text"],
.sivuehdotukset-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sivuehdotukset-form input[type="file"] {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
    background: #f9f9f9;
}

.sivuehdotukset-form .description {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.sivuehdotukset-form button[type="submit"] {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.sivuehdotukset-form button[type="submit"]:hover {
    background: #005177;
}

.sivuehdotukset-form button[type="submit"]:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* MUUTOS TÄÄLLÄ: Lisätty kaikki alla olevat tyylit */

.sivuehdotukset-form .form-message {
    padding: 10px;
    margin-top: 15px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.sivuehdotukset-form .form-message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.sivuehdotukset-form .form-message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.sivuehdotukset-form .form-message.info {
    background-color: #d9edf7;
    color: #31708f;
    border: 1px solid #bce8f1;
}

.sivuehdotukset-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Spinnerin tyylit */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(49, 112, 143, 0.3);
    border-top-color: #31708f;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
