.holiday-info {
    width: 100%;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    margin: 0 auto;
}

fieldset {
    border: none;
    margin-bottom: 15px;
}

fieldset div {
    margin: 1rem 0;
}

legend {
    font-weight: bold;
}

input[type="text"],
input[type="date"],
input[type="number"],
button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="radio"] {
    margin-right: 5px;
}

.form-holiday-details {
    display: flex;
    justify-content: space-between;
}

.form-holiday-details > div {
    width: 30%; /* Adjust as needed */
}

button {
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #45a049;
}
