::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

.movie-poster {
    transition: transform 0.3s, box-shadow 0.3s;
}

.movie-poster:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 107, 107, 0.3);
}

.seat {
    width: 40px;
    height: 40px;
    border: 2px solid #4b5563;
    border-radius: 4px 4px 8px 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.seat.available {
    background-color: #2d3748;
    color: #cbd5e0;
}

.seat.available:hover {
    background-color: #4a5568;
    border-color: #ff6b6b;
}

.seat.booked {
    background-color: #4b5563;
    color: #a0aec0;
    cursor: not-allowed;
}

.seat.selected {
    background-color: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
}