body {
    font-family: 'Nunito', sans-serif;
    background: #f7f7f7;
    color: #333;
    padding: 20px;
}

.menu-container, .admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-card {
    margin-bottom: 30px;
}

.category-card h2 {
    font-size: 1.8rem;
    color: #fd951f;
    border-bottom: 2px solid #fd951f;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.product-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e3e4e8;
}

.product-item:last-child {
    border-bottom: none;
}

.product-name {
    font-weight: 600;
    color: #555;
}

.product-price {
    font-weight: 600;
    color: #fd951f;
}

.admin-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-header .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.admin-form {
    margin-bottom: 30px;
}

.admin-form h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.admin-form input, .admin-form select, .admin-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.admin-form button {
    background: #fd951f;
    color: #fff;
    border: none;
    cursor: pointer;
}

.admin-form button:hover {
    background: #e6841a;
}

.search-results {
    margin-top: 20px;
}

.search-results h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}