.result-section {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
#searchForm{
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}
.form-group {
    margin-bottom: 15px;
}

label {
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"], select {
    width: 100%;
    padding: 10px;
    font-size: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="text"]:focus, select:focus {
    border-color: #007bff;
    outline: none;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 60%;
}

.btn:hover {
    background-color: #0056b3;
}
