/* Form container */
form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}


/* Labels */
label {
    display: block;
    margin-bottom: 8px;
    margin-top: 10px;
    font-weight: bold;
    color: #555555;
}

/* Input fields */
input[type="text"],
input[type="date"],
input[type="email"],
input[type="file"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 14px;
}
input[type="date"] {
    width: 100%; /* Makes the input field take full width */
    max-width: 100%; /* Ensures it does not overflow */
    box-sizing: border-box; /* Prevents padding from increasing width */
    padding: 8px;
    font-size: 16px;
    min-width: 300px;/* Ensures visibility on mobile */
}

/* Textarea */
textarea {
    resize: none;
    height: 80px;
}

/* Button */
button {
    width: auto;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
select {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

