.restaurant-products-list { 
    margin-top: 20px; 
    overflow-x: auto;
}
.category-title {
    font-size: 20px;
    margin: 20px 0 10px;
    font-weight: bold;
    color: #333;
}
.restaurant-products-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    table-layout: fixed;
}
.restaurant-products-table th,
.restaurant-products-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.restaurant-products-table th:nth-child(1),
.restaurant-products-table td:nth-child(1) {
    width: 110px;
    text-align: center;
}

.restaurant-products-table th:nth-child(2),
.restaurant-products-table td:nth-child(2) {
    width: auto;
    text-align: left;
}
.restaurant-products-table th:nth-child(3),
.restaurant-products-table td:nth-child(3) {
    width: 140px;
    text-align: right;
}
.restaurant-products-table th:nth-child(4),
.restaurant-products-table td:nth-child(4) {
    width: 260px;
    text-align: center;
}
.restaurant-products-table th { 
    background: #f7f7f7; 
    font-weight: bold; 
}
.restaurant-products-table img { 
    width: 60px; 
    height: auto; 
    border-radius: 4px; 
    display: block;
    margin: 0 auto;
}
.product-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.product-actions .button {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 70px;
    cursor: pointer;
}
.product-actions .edit { background-color: #28a745; }
.product-actions .edit:hover { background-color: #218838; }
.product-actions .delete { background-color: #dc3545; }
.product-actions .delete:hover { background-color: #c82333; }


/* Responsive */
@media (max-width: 768px) {
    .restaurant-products-table {
        table-layout: auto;
    }
    .restaurant-products-table th:nth-child(1),
    .restaurant-products-table td:nth-child(1) { 
        display: none;
    }
    .product-actions {
        flex-direction: column;
        gap: 5px;
    }
    .product-actions .button {
        width: 100%;
    }
}

.boton-label { 
    background:#c7b070; 
    padding:8px 15px; 
    border-radius:5px; 
    cursor:pointer; 
    display:flex; 
    align-items:center; 
    font-weight:500; 
}

.green-button {
    background-color: #418807;
    color: white!important;
    border: none;
    padding: 16px 18px 16px 18px;
    margin-bottom: 20px;
    margin-right: 8px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 8px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s;
}

.gold-button {
    background-color: #DAA520;
    color: white!important;
    border: none;
    padding: 10px 18px;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s;
}

.delete-button {
    color: white!important;
    background-color: #d9534f !important;
    border: none;
    padding: 10px 18px;
    margin-bottom: 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 10px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s;
}

.delete-button:hover { background: #a40000; }
.gold-button:hover { background-color: #b8860b; }

