.header {
    background-color: #333;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 50px;
}
.nav__list {
    display: flex;
    gap: 15px;
}

.nav__link {
    color: floralwhite;
    font-size: 16px;
    text-decoration: none;
}

.active {
    color: rgba(255, 183, 100, 0.9);
    font-weight: bold;
    font-size: 20px;
}

.name__title {
    color: floralwhite;
    font-size: 18px;
}

.center {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    color: floralwhite;
    cursor: pointer;
    height: 35px;
    border: 1px solid teal;
    border-radius: 0.5rem;
    background-color: cornflowerblue;
}

.button__link {
    text-decoration: none;
    color: floralwhite;
}


.table-button {
    margin-left: 10%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 200;
    display: block;
    backdrop-filter: blur(10px);
}

.modal-window {
    border: 2px solid teal;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 50%;
    position: fixed;
    top: 25%;
    left: 25%;
    z-index: 201;
    border-radius: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}

.hidden {
    display: none;
}


.cell-search__inputs {
    justify-content: space-evenly;
}


.table_material-list {
    height: 40vh;
    overflow: auto;

}
