@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono&family=Roboto:wght@300&display=swap');

body {
    font-family: 'Roboto';
    font-size: 0.8rem;
    background: #FFEFBA;
    overflow: hidden;
}

li {
    max-width: 40%;
    color: #333;
    background-color: #E3D5A6;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #505996;
    padding: 8px;
}

.input-file {
    background-color: #f8f9fc;
    border: 1px solid #e2e9f3;
    border-radius: 4px;
    height: 40px;
    width: 500px;
    color: #565A90;
}

.input-file::file-selector-button {
    border: none;
    border-radius: 4px;
    color: white;
    background-color: #595ef1bd;
    border: 1px solid #595ef1bd;
    height: 40px;
    cursor: pointer;
    transition: all .25s ease-in;
    cursor: pointer;
}

.input-file::file-selector-button:hover {
    background-color: #fff;
    color: #565A90;
    transition: all .25s ease-in;
}

.btn {
    width: 130px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5),
        7px 7px 20px 0px rgba(0, 0, 0, .1),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    background: #505996;
    border: none;

}

.btn:hover {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .5),
        -4px -4px 6px 0 rgba(116, 125, 136, .5),
        inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}

h2 {
    color: #505996;
}

.d-none {
    display: none;
}

#results {
    max-width: 50%;
    max-height: 500px;
    overflow: auto;
}
#results div {
    margin-top: 20px;
}
.d-block {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#algorithm {
    padding: 10px;
    border-radius: 5px;
    background-color: #fff;

}
