/* Thêm vào file styles/components/menu.css */

/* Khu vực thông báo */
.menu-announcements {
    background-color: #fff9e6;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0e0b2;
  }
  
  .announcement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .announcement-container h2 {
    color: #d35400;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .announcement-content {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .announcement-content p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
  }
  
  /* Phần chọn kích thước */
  .portion-size-selector {
    margin: 15px 0;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
  }
  
  .portion-size-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
  }
  
  .portion-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .portion-option {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .portion-option:hover {
    border-color: #ffc107;
  }
  
  .portion-option input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  
  .portion-option input[type="radio"]:checked + .portion-name {
    color: #d35400;
    font-weight: bold;
  }
  
  .portion-option input[type="radio"]:checked ~ .portion-price-diff {
    color: #d35400;
  }
  
  .portion-option input[type="radio"]:checked + .portion-name::after {
    content: "✓";
    margin-left: 5px;
  }
  
  .portion-name {
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .portion-price-diff {
    font-size: 14px;
    color: #666;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .portion-options {
      flex-direction: column;
    }
    

  }
  