body {
    margin: 0;
    background-color: rgb(184, 201, 223);
    overflow-x: hidden;
}

.header_container {
    display: flex;
    /* border: 2px black solid; */
}

.logo {
    position: absolute;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.2);
}

.logo img {
    margin-top: 5px;
    margin-left: 5px;
    height: 50px;
    width: 75px;
    border-radius: 5px;
    /* border: 2px red solid; */
}

.ticker_input_container {
    display: flex;
    justify-content: center;
    /* border: 2px blue solid; */
}

.input_form {
    position: relative;
    margin-top: 20px;
    width: 75%;
    justify-content: center;
    text-align: center;
    /* border: 2px red solid; */
}

.input_form h1 {
    color: rgb(28, 127, 181);
    font-family: 'Roboto Mono';
    font-weight: bold;
    font-size: 40px;
}

.input_form input {
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    transition: width 0.4s ease-in-out;
}

.input_form input:focus {
    /* background-color: rgb(201, 240, 252); */
    width: 75%;
}

.radio {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 2px blue solid; */
}

.radio_container {
    display: flex;
    gap: 10px;
    /* border: 2px red solid; */
    width: 50%;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.radio_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 5px;
}

input[type="radio"] {
    width: 15px;
    height: 15px;
}

.input_form button {
    color: black;
    background-color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
}

.input_form button:hover {
    background-color: rgb(67, 145, 188);
    color: white;
}

hr {
    margin-bottom: 0px;
}

.chosen_items {
    text-align: center;
    /* border: 2px red solid; */
    line-height: 5px;
    margin-top: 0px;
    font-family: 'Roboto Mono';
    color: rgb(67, 145, 188);
}

.resulting_content {
    display: grid;
    grid-template-columns: 48% 48%;
    column-gap: 4%;
}

.correlation_container {
    margin-top: 5px;
    text-align: center;
    /* border: 2px green solid; */
}

.correlation_container h2 {
    font-size: 28px;
    position: sticky;
}

.corr_content {
    text-align: center;
    align-items: center;
    /* border: 2px red solid; */
}

.corr_plot {
    text-align: center;
    /* border: 2px blue solid; */
    margin: 5px auto;
}

.metrics_container {
    /* display: flex; */
    text-align: center;
    margin-top: 5px;
    overflow-x: auto;
    /* border: 2px red solid; */
}

.metrics_container h2 {
    font-size: 28px;
}

.sticky_col {
    position: sticky;
    left: 0;
    z-index: 1;
    border-right: 1px solid black;
    background-color:rgb(67, 145, 188);
    color: white;
    font-weight: bold;
    padding: 2px;
}

.info_table {
    align-items: center;
    width: 98%;
    border-collapse: collapse;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin-right: 0px;
    margin-left: 0px;
    margin-top: 50px;
    overflow-x: auto;
    height: auto;
}

.info_table tr {
    border-bottom: 1px black solid;
}

.info_table th {
    border: 1px solid black;
    background-color:rgb(67, 145, 188);
    color: white;
    padding: 2px;
}

.info_table th, td {
    border-left: 1px solid black;
    border-right: 1px solid black;
    padding: 10px;
}

.info_table tbody tr:nth-of-type(even) {
    background-color: rgb(219, 228, 240);
}

.time_series_container {
    text-align: center;
    width: 100%;
}

.time_series_container h2 {
    font-size: 28px;
}

.no_ticker_container {
    /* border: 2px blue solid; */
    margin: 5px;
    padding: 10px;
    font-size: 24px;
}

.no_ticker_container h2 {
    font-family: 'Roboto Mono';
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: rgb(28, 127, 181);
}

.no_ticker_container p {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

footer{
    /* background-color: rgb(117, 146, 178); */
    background-color: rgb(28, 127, 181);
    color: white;
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
    height: 50px;
    line-height: 50px;
    bottom: 0;
}


/* ************************************************************************ */
/* *********************************MOBILE********************************* */
/* ************************************************************************ */

/* @media (max-width: 480px) { */
@media screen and (max-width: 700px){
    body {
        background-color: rgb(184, 201, 223);
        width: 100% !important;
        overflow-x: hidden !important;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .ticker_input_container {
        width: 100%;
        /* border: 2px red solid; */
        display: flex;
    }

    .ticker_input_container h1 {
        font-size: 28px;
        /* border: 2px black solid; */
        width: 100%;
        max-width: 100%;
        margin-top: 50px;
    }

    .input_form input {
        width: 75%;
    }

    .radio {
        /* border: 2px green solid; */
        width: 100%;
    }

    .radio_container {
        /* border: 2px blue solid; */
        flex-wrap: wrap;
        width: 75%;
    }

    .radio_item {
        flex-direction: column;
    }

    .resulting_content {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .corr_content {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .metrics_container {
        /* display: none; */
        overflow-x: auto;
    }

    .metrics_container h2 {
        display: none;
    }

    .no_ticker_container {
        text-align: center;
    }

    .no_ticker_container h2 {
        font-size: 28px;
    }

    /* .resulting_content {
        max-width: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    } */

}