

body{

    background: linear-gradient(120deg, #f2f4f8, rgb(233, 243, 248), rgb(250, 247, 236), rgb(247, 236, 234));
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
}

.switch_orders{
    display: flex;                /* Включаем Flexbox */
      justify-content: center;      /* Центрируем по горизонтали */
      align-items: center;
      margin-top: 2%;
}

.order {
    background: white;
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin: 3vh;
    border-radius: 20px;
    transition: transform 1s;


}
.order:hover{
    background: rgb(245, 245, 245);
}

@keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }




.user{
    padding: 20px;
}

.description{
    padding: 20px;
}
.func{
    padding: 20px;
}

.statusorder{


    transform: rotate(270deg); /* Поворот текста на 270 градусов */
    height: 100%;              /* Заполнение по высоте контейнера */
    display: flex;
    align-items: center;       /* Центрирование текста по вертикали внутри повернутого блока */
    white-space: nowrap;       /* Предотвращение переноса текста */
    font-size: 40px;

}







.orderimage {
    width: 15%; /* Ширина миниатюр */
    height: 80px; /* Высота миниатюр */
    object-fit: cover; /* Обрезка по центру */
    cursor: pointer;
    transition: transform 0.2s;
}

.orderimage:hover {
    transform: scale(1.1); /* Увеличение при наведении */
}


.desc {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 1000px;
    transition: all 0.3s ease;
}



}

.location{
overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 1000px;
    transition: all 0.3s ease;
}

.

}



.search-container {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Расположение от меню */
}

.search-input {
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-button {
    margin-left: 10px;
    padding: 5px 15px;
    font-size: 14px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.search-button:hover {
    background-color: #0056b3;
}
