body {
    font-family: 'Poppins', sans-serif;
    background-color: antiquewhite;
    color: grey;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 90%;
    max-width: 700px;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1e2a4a;
}

/* Input and button styling */
.input-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.input-section label {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 5px;
}

.input-section input {
    padding: 10px 12px;
    border: 1px solid black;
    border-radius: 6px;
    text-align: center;
    font-size: 1rem;
    width: 100px;
    transition: all 0.3s ease;
}

.input-section input:focus {
    outline: none;
    border-color: black;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.5);
}

#generateBtn {
    padding: 10px 20px;
    border: none;
    background-color: royalblue;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-end;
}

#generateBtn:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
}

/* Seat Grid and Seat Styling */
.seat-grid {
    display: grid;
    gap: 20px 50px;
    margin: 20px auto;
    justify-content: center;
    width: fit-content;
}

.seat {
    width: 45px;
    height: 45px;
    border: 2px solid #a8b0c6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seat:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.seat.available {
    background-color: limegreen;
    border-color: black;
}

.seat.booked {
    background-color: grey;
    border-color: black;
}

.seat.booked:hover {
    background-color: grey;
}

.seat.blocked {
    background-color: red;
    border-color: black;
    cursor: not-allowed;
    pointer-events: none;
}

/* Info section styling */
.info-section {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}