/* Submission Section */
#submit {
    background: white;
    padding: 50px 0;
    text-align: left;
}

#submit input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#submit form button {
    padding: 8px 15px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#submit form button:hover {
    background: #218838;
}

