.restaurant-menu-container {
    display: flex;
    width: 100%;
}

.Aside_Catrgories {
    width: 20%;
    padding: 20px;
    background: #f8f8f8;
}

.menu-items-section {
    width: 80%;
    padding: 20px;
}

.Dish_Container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background-image: url('https://mangalest.ee/wp-content/uploads/2025/04/fone_mane.jpg');
    background-size: cover;
}

.Dish_Container img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-right: 20px;
}

.Dish_Name {
    font-family: 'Sail';
    font-size: 1.4em;
    margin-bottom: 10px;
}

.Dish_Price {
    font-family: 'Sail';
    font-size: 1.9em;
}

.menu-category-item {
    font-family: 'Sail';
    font-size: 1.2em;
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.menu-category-item.active {
    font-weight: bold;
}
/* Добавьте в admin.css */
.menu-category-item.loading {
    opacity: 0.7;
    position: relative;
}

.menu-category-item.loading:after {
    content: " ";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid #ccc;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.Container_Menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* В ваш admin.css добавьте: */
.category-controls {
    display: inline-block;
    margin-left: 10px;
}

.category-controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 3px;
}

.category-controls button:hover {
    color: #0073aa;
}

#category-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

#category-modal > div {
    background: #fff;
    width: 400px;
    margin: 100px auto;
    padding: 20px;
    border-radius: 5px;
}

.menu-categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
/* Add to admin.css */
button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}