/* Universal Container */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Styling */
.upload-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upload-form .form-group {
    display: flex;
    flex-direction: column;
}

.upload-form label {
    font-weight: bold;
    margin-bottom: 8px;
}

.upload-form input[type="text"],
.upload-form input[type="file"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.upload-form button {
    padding: 10px 20px;
    background-color: #3b82f6;
    color: white;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.upload-form button:hover {
    background-color: #2a6cd6;
}

/* Header and Title */
header h1 {
    text-align: center;
    color: #333;
}

/* Add some space around the form and center it */
h2 {
    text-align: center;
    color: #333;
    font-size: 24px;
}

/* Form Container Adjustments */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-button {
    margin-top: 10px;
    background-color: #3b82f6;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #2a6cd6;
}

