/* Container */
.seating-chart-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    align-items: center;
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    color: var(--primary-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.dot.empty {	
	background-color: #F3F0EE;
    border: 1px solid var(--primary-color);
}

.dot.selected {
   background-color: #99724C;
}

.dot.inuse {
    background-color: #E6711C;
}

.dot.gray {
    background-color: var(--text-light);
}

.dot.leave {
    background-color: var(--sky-blue);
}

.dot.dark-gray {
    background-color: var(--dark-gray);
}

/* Seating Chart */

.side-title {
    background-image: url(../images/icons/left-banner02.png);
}

.layout-container {
    margin: 20px auto;
    padding: 40px 40px 0;
    position: relative;
}

.row {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.column-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.column-group:last-child {
    flex-wrap: wrap-reverse;
    align-self: flex-end;
}

.seat-cluster {
    display: grid;
    grid-template-columns: repeat(2, 70px);
    grid-template-rows: repeat(3, 25px);
    border: 6px solid white;
    border-radius: 12px;
    overflow: hidden;
    border-color: var(--text-light);
    position: relative;
}

.seat-cluster.priority-seat {
    grid-template-columns: repeat(2, 70px);
    grid-template-rows: repeat(2, 38px);
    border: 6px solid var(--text-light);
    border-radius: 12px;
    overflow: hidden;
}

.column-group:nth-of-type(1) .seat-cluster:nth-of-type(1) {
    margin-top: -40px;
}

.seat {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    background: var(--third-color);
    border-color: var(--text-light);
    color: #000;
}

.priority-seat .seat{
    border-color: var(--text-light);
}

.seat-cluster.general-pink,
.general-pink .seat{
    border-color: #DC95CF;
}

.seat-cluster.young-yellow,
.young-yellow .seat{
    border-color: #E2BF3F;
}

.seat-cluster.study-blue,
.study-blue .seat{
    border-color: #60C1D8;
}

.seat-cluster.laptop-green,
.laptop-green .seat{
    border-color: #94B683;
}

.seat-cluster.accessible-gray,
.accessible-gray .seat{
    border-color: #F3F0EE;
}


.seat-cluster.empty{
    border-color: transparent;
}

.seat:nth-child(2n) {
    border-right: none;
}

.seat:nth-last-child(-n+2) {
    border-bottom: none;
}

.seat.selected {
    background-color:#99724C;
    color: white;
}

.seat.inuse {
    background-color: #E6711C;
    color: white;
}

.seat.leave {
    background-color: var(--sky-blue);
    color: white;
}


.legend-indicator {
    width: 13px;
    height: 13px;
    margin-right: 10px;
    border-radius: 100%;
    border: 1px solid transparent;
    border-color: var(--primary-color);
    background-color: #F3F0EE;
}

.inuse .legend-indicator{
    border-color: transparent;
    background-color:#E6711C;
}

.selected .legend-indicator{
    border-color: transparent;
    background-color: #99724C;
}

.gray .legend-indicator{
    border-color: transparent;
    background-color: var(--text-light);
}

.leave .legend-indicator{
    border-color: transparent;
    background-color: var(--sky-blue);
}

.empty .legend-indicator{
    background-color: #F3F0EE;
    border-color: var(--primary-color);
}


.desk {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 20px;
    font-weight: 100;
    border-radius: 12px;
}


/* Entrance and Exit */
.icon-entry, .icon-exit {
    writing-mode: vertical-rl;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 5px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
}

/* Footer */
.space-footer {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
    background: var(--border-color);
    color: var(--text-dark);
    padding: 8px;
    border-radius: 5px;
    font-weight: 200;
}

.exit {
    width: 35px;
}

.go80{
  width:80%;
 }
 
.title-tabs {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
    justify-content: space-between;
}
.legend-container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    font-family: Arial, sans-serif;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.status-text {
    font-size: 14px;
    color: #333;
}

.status-available {
    background-color: var(--gray);
}

.status-reserved {
    background-color: var(--brown);
}

.status-on-site {
    background-color: var(--sky-blue);
}

.status-study {
    background-color: var(--blue);
}

.status-general {
    background-color: var(--purple);
}


.status-youth {
    background-color: var(--yellow);
}

.status-laptop {
    background-color: var(--green);
}

.status-accessible{
	 background-color: #999;
}


.status-other-area {
    background-color: var(--dark-gray);
}

.rightup{
	align-self: self-end;
} 
