.table-layout {
    text-align: center;
    background: #f4f4f4;
    padding: 20px;
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: auto;
  }
  
  .floor {
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid #333;
    border-radius: 10px;
    background: #fff;
  }
  
  .floor-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .tables {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
  
  .bottom-floor {
    display: grid;
    grid-template-columns: repeat(2, 80px);
    justify-content: space-between;
    gap: 10px;
  }
  
  .column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .table {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
  }
  
  .reserved {
    background-color: #5d2977;
  }
  
  .available {
    background-color: #7f8c8d;
  }
  
  .legend {
    margin-top: 20px;
  }
  
  .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 5px;
  }
  
  .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }
  
  .dj {
    margin: 10px 0;
    font-weight: bold;
    color: #e74c3c;
  }

.first_small{
    margin: 10px 0 15px 0;
    font-weight: bold;
}
  
  .stairs {
    margin: 10px 0;
    font-weight: bold;
    color: #f39c12;
  }
  
  .entrance {
    margin: 10px 0;
    font-weight: bold;
    color: #2ecc71;
  }
  
