/* app/assets/stylesheets/menu_selector.css */
/* メニューチェックボックスのスタイル */
.menu-checkbox-container {
    margin: 20px 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* タブナビゲーション */
  .menu-checkbox-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .menu-tab {
    padding: 10px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    position: relative;
  }
  
  .menu-tab.active {
    color: #3b82f6;
    border-bottom: 2px solid #3b82f6;
  }
  
  .menu-tab:disabled {
    color: #d1d5db;
    cursor: not-allowed;
  }
  
  .selected-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 6px;
  }
  
  /* メニュー選択エリア */
  .menu-checkbox-selection {
    padding: 16px;
  }
  
  .menu-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
  }
  
  .menu-mode-badge {
    font-size: 12px;
    background-color: #fef3c7;
    color: #92400e;
    padding: 2px 8px;
    border-radius: 9999px;
    margin-left: 8px;
  }
  
  /* カテゴリー */
  .menu-category {
    margin-bottom: 20px;
  }
  
  .category-header {
    margin-bottom: 8px;
  }
  
  .category-title {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
  }
  
  /* アイテム */
  .menu-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
  }
  
  .item-label {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
  }
  
  .item-checkbox {
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
  }
  
  .item-name {
    font-size: 14px;
    color: #1f2937;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .recommended-tag {
    font-size: 11px;
    background-color: #fef3c7;
    color: #92400e;
    padding: 2px 6px;
    border-radius: 9999px;
    margin-left: 8px;
    font-weight: 500;
    flex-shrink: 0;
  }
  
  .item-price {
    font-size: 14px;
    color: #6b7280;
    margin-left: 8px;
    flex-shrink: 0;
  }
  
  /* プレビューエリア */
  .menu-preview-container {
    padding: 16px;
  }
  
  .menu-preview-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    color: #6b7280;
  }
  
  .menu-preview-name-input {
    margin-bottom: 16px;
  }
  
  .menu-preview-name-input label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #374151;
  }
  
  .menu-preview-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
  }
  
  .menu-preview-section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
  }
  
  .menu-preview-order {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
  }
  
  .menu-preview-language {
    padding: 16px;
  }
  
  .menu-preview-greeting,
  .menu-preview-introduction,
  .menu-preview-purpose,
  .menu-preview-request,
  .menu-preview-closing {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .menu-preview-items {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
  }
  
  .menu-preview-category {
    margin-bottom: 12px;
  }
  
  .menu-preview-category-name {
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
  }
  
  .menu-preview-category-items {
    list-style: none;
    padding-left: 16px;
  }
  
  .menu-preview-item {
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .menu-preview-item.recommended {
    font-weight: 500;
    color: #92400e;
  }
  
  .menu-preview-item-price {
    color: #6b7280;
    margin-left: 8px;
  }
  
  .menu-preview-divider {
    padding: 8px 16px;
    background-color: #f9fafb;
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    border-top: 1px dashed #e5e7eb;
    border-bottom: 1px dashed #e5e7eb;
  }
  