/* Stil za formu */
.new-form-style {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
}

/* Stilovi za input polja i textarea */
.new-form-style input[type="text"],
.new-form-style input[type="email"],
.new-form-style textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Stil za dugme */
.new-form-style button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.new-form-style button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Stil za placeholder */
.new-form-style ::placeholder {
    color: #999;
}

/* Uspešna poruka */
.success-message {
    color: green;
    margin-top: 10px;
}

/* Neuspešna poruka */
.error-message {
    color: red;
    margin-top: 10px;
}

#statusMessage {
    font-weight: bold;
}
