body {
    margin: 0 !important;
    padding: 0 !important;
}

.search-form-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background-color: #021e2c !important;

    box-sizing: border-box !important;
}

.search-form-accordion:hover {
    background-color: dimgray !important;
}

.search-form {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;

    width: 1600px !important;

    box-sizing: border-box !important;
}

.search-form-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 1600px !important;
    height: 100px !important;

    box-sizing: border-box !important;
}

.date-input {
    height: 50px !important;
    width: 600px !important;

    font-size: 20px !important;
    text-align: center !important;

    border: 1px solid black !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
}

.search-button {
    height: 50px !important;
    width: 600px !important;

    font-size: 25px !important;

    color: white !important;
    background-color: gray !important;

    border: none !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;

    transition: transform 0.4s ease !important;
}

.search-button:hover {
    transform: scale(1.05) !important;
}

@media screen and (max-width: 1600px) {
    .search-form-accordion {
        width: 1000px !important;
    }

    .search-form {
        width: 1100px !important;
    }
    .search-form-item {
        width: 1000px !important;
    }
    .date-input {
        width: 500px !important;
    }
    .search-button {
        width: 500px !important;
    }
}

@media screen and (max-width: 1200px) {
    .search-form-accordion {
        width: 900px !important;
    }

    .search-form {
        width: 950px !important;
    }
    .search-form-item {
        width: 900px !important;
    }
    .date-input {
        width: 400px !important;
    }
    .search-button {
        width: 400px !important;
    }
}

@media screen and (max-width: 950px) {
    .search-form-accordion {
        width: 700px !important;
        font-size: 20px !important;
    }

    .search-form {
        width: 750px !important;
    }
    .search-form-item {
        width: 700px !important;
    }
    .date-input {
        width: 400px !important;
    }
    .search-button {
        width: 400px !important;
    }
}

@media screen and (max-width: 750px) {
    .search-form-accordion {
        width: 500px !important;

        height: 70px !important;
    }

    .search-form {
        width: 550px !important;
    }
    .search-form-item {
        width: 500px !important;
    }
    .date-input {
        width: 400px !important;
    }
    .search-button {
        width: 400px !important;
    }
}

@media screen and (max-width: 550px) {
    .search-form-accordion {
        width: 350px !important;
    }

    .search-form {
        width: 370px !important;
    }
    .search-form-item {
        width: 350px !important;
    }
    .date-input {
        width: 350px !important;
    }
    .search-button {
        width: 350px !important;
    }
}