html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #1F1F1F;
}

header, footer {
    position: fixed;
    width: 100%;
    max-height: 66px;
    background-color: #343A40;
    z-index: 10;;
    min-width: 300px;
    color: white;
}
header{ top:0px; }
footer{ bottom: 0px; }

/* ===================          TOP PANEL */
.top_panel{
    width: 100%; height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}
.logo{
    text-align:center; text-decoration: none; color: white; font-size: 5vw;
}

/* ===================          TOP PANEL */
.bottom_panel{
    width: 100%; height: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: 5px;
    grid-template-columns: repeat(6, 1fr);
}
.bottom_btn{
    text-align: center;
    cursor: pointer;
}
.bottom_btn span{
    font-size: 10vw;
}





/* Карточки */
.users_list {
    position: absolute;
    top: 67px; /* высота хедера */
    bottom: 67px; /* высота футера */
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    overflow-y: auto; /* Скролл если содержимое превышает высоту */
    scrollbar-width: none; /* для Firefox */
}
/* для Chrome, Safari и других WebKit-браузеров */
.users_list::-webkit-scrollbar {
    display: none;
}

.container {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(3, 1fr); /* 3 карточки в ряд */
}
.user_cart_id {
    display: flex;
    justify-content: center;
    align-items: center;
}
.user_cart_id img {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 5px;
}

/* Для экрана меньше 600px — 3 карточки в ряд */
@media (max-width: 599px) {
    .container {
        grid-template-columns: repeat(3, 1fr); /* 3 карточки в ряд */
    }
}

/* Для экрана больше 600px — 5 карточек в ряд */
@media (min-width: 600px) {
    .container {
        grid-template-columns: repeat(5, 1fr); /* 5 карточек в ряд */
    }
}




.no-deco{ text-decoration: none; }
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' -25,
  'opsz' 20
}