:root {
    --color-amber-50: #fffbeb;
    --color-amber-200: #fde68a;
    --color-amber-600: #d97706;
    --color-amber-700: #b45309;
    --color-amber-800: #92400e;
    --table-available: #c7cd2d;
    --table-reserved: #c7882c;
    --table-occupied: #c82027;
    --table-selected: #73cfee;
  }
/*   
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } */
  
  /* body {
    font-family: Helvetica, Arial, sans-serif;
    background: transparent;
    min-height: 100vh;
  } */
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* Layout */
  .layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  @media (min-width: 1024px) {
    .layout {
      grid-template-columns: 2fr 1fr;
    }
  }
  
  .table-section, .info-section {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Restaurant Layout */
  .restaurant-layout {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .restaurant-layout svg {
    width: 100%;
    height: auto;
  }
  
  /* Table Layout */
  .table-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .area-section {
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
  }
  
  .area-section:last-child {
    border-bottom: none;
  }
  
  .area-title {
    font-size: 1.25rem;
    color: var(--color-amber-800);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
  }
  
  .tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
    gap: 0.75rem;
    padding: 0.5rem;
  }
  
  @media (min-width: 640px) {
    .tables-grid {
      grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
    }
  }
  
  .table {
    aspect-ratio: 1;
    border: 2px solid #333;
    border-radius: 0.25rem;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    position: relative;
    min-width: 60px;
  }
  
  .table.available {
    background: var(--table-available);
    cursor: pointer;
  }
  
  .table.reserved {
    background: var(--table-reserved);
  }
  
  .table.occupied {
    background: var(--table-occupied);
  }
  
  .table.selected {
    background: var(--table-selected);
    cursor: pointer;
  }
  
  /* Legend */
  .legend-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .color-box {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #333;
    border-radius: 0.25rem;
  }
  
  .color-box.available { background: var(--table-available); }
  .color-box.reserved { background: var(--table-reserved); }
  .color-box.occupied { background: var(--table-occupied); }
  .color-box.selected { background: var(--table-selected); }
  
  /* Table Info */
  .tableChoosen-info {
    margin-top: 1rem;
  }
  
  .empty-state {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
  }
  
  .selected-table {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
  }
  
  .table-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .reserve-button {
    width: 100%;
    background: var(--color-amber-600);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
    margin-top: 1rem;
  }
  
  .reserve-button:hover {
    background: var(--color-amber-700);
  }
  
  /* Modal */
  .modalConfirm {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  .modalConfirm.hidden {
    display: none;
  }
  
  .modalConfirm-content {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 28rem;
    width: 100%;
    position: relative;
  }
  
  .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
  }
  
  .close-button:hover {
    color: #333;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .animate-fadeIn {
    animation: fadeIn 0.3s ease-in-out;
  }
  
  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #c7882c;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #a66d23;
  }