/* Basic styles */
.movie-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.seat {
    width: 40px;
    height: 40px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    background-color: #ddd;
    display: inline-block;
    text-align: center;
    line-height: 40px;
}
.seat.selected {
    background-color: #6c757d; /* Secondary color */
    color: white;
}
.seat.occupied {
    background-color: #dc3545; /* Danger color */
    color: white;
    cursor: not-allowed;
}
.screen {
    background-color: #333;
    height: 50px;
    width: 100%;
    margin: 15px 0;
    transform: rotateX(-45deg);
    box-shadow: 0 3px 10px rgba(255,255,255,0.7);
    color: #fff;
    text-align: center;
    line-height: 50px;
}
