.container_file {
    flex-direction: row;
    position: relative;
}

.card {
    position: relative;
    width: 25%;
    height: 50vh;
    background-color: rgb(255, 255, 255);
    padding: 10px 30px 20px 30px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
}

.file_button {
    justify-self: end;
    align-self: center;
    font-size: 16px;
    height: 50px;
    width: 150px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.file_form_container {
    height: 100%;
    /* background-color: #EE686A; */
    display: flex;
    flex-direction: column;
}

.file_detected {
    position: relative;
    background-color: rgb(255, 255, 255);
    width: 25%;
    height: 50vh;
    padding: 10px 30px 20px 30px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
}

.file_secondary_button {
    color: #000D44 ;
    background-color: transparent;
    border: #000D44 solid 2px;
}

.file_secondary_button:hover {
    background-color: #EE686A;
    color: #000D44;
    border: solid 2px transparent;
}

.file_items_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.file_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    border-radius: 8px;
    padding: 26px 10px 25px 10px;
    border-bottom: 2px solid #F1F0ED;
    gap: 1vw;
}

.file_item:hover {
    color: #000D44;
    background-color: #EE686A;
    border-bottom: 2px solid #F1F0ED;
}

.div_title_with_border {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 5vh;
    position: relative;
    border: solid #F1F0ED 2px;
    border-radius: 8px;
    padding: 2vh;
    margin: 1vh 0vh 1vh 0vh;
}

.div_title_with_border label:first-child {
    position: absolute;
    top: -1vh;
    background-color: white;
    padding: 0vh 1vh 0vh 1vh;
}

#load_new_tests {
    height: 50px;
}

.file_item_icon {
    height: 40px;
    width: auto;
}

.spreadsheet_title {
    display: flex;
    flex-direction: row;
    justify-items: flex-start;
    align-items: center;
    gap: 1vw;
}

.card_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card_container_content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%
}

#file_method_chooser.card {
    height: auto;
}

@media (min-width: 660px) and (max-width: 1100px) {
    .card {
        position: relative;
        width: 40%;
        height: 50vh;
        background-color: rgb(255, 255, 255);
        padding: 10px 30px 20px 30px;
        margin: 20px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
    }
    
    .file_detected {
        position: relative;
        background-color: rgb(255, 255, 255);
        width: 40%;
        height: 50vh;
        padding: 10px 30px 20px 30px;
        margin: 20px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 660px) {
    .container_file {
        flex-direction: column;
    }
    

    .card {
        width: 80%;
        min-height: 40vh;
        background-color: rgb(255, 255, 255);
        padding: 10px 30px 20px 30px;
        margin: 20px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
    }

    .file_detected {
        background-color: rgb(255, 255, 255);
        width: 80%;
        min-height: 50vh;
        padding: 10px 30px 20px 30px;
        margin: 20px;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        box-shadow: 5px 0px 5px rgba(0, 0, 0, 0.2);
    }
    
}