/**
 * Showtime Info Styles
 * Style cho phần hiển thị lịch chiếu trong single page
 */

.doo-showtime-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 0px;
    background: transparent;
    border: 2px solid #a3765d;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.doo-showtime-info:hover {
    border-color: #c99270;
    background: rgba(163, 118, 93, 0.05);
}

.showtime-icon {
    font-size: 20px;
    line-height: 1;
}

.showtime-content {
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

.showtime-time {
    color: #a3765d;
    font-size: 16px;
    font-weight: 700;
}

.showtime-days-text {
    color: #999;
    font-weight: 500;
}

.showtime-note-text {
    color: #888;
    font-weight: 400;
}

/* Responsive mobile */
@media screen and (max-width: 768px) {
    .doo-showtime-info {
        padding: 10px 12px;
        gap: 8px;
    }

    .showtime-icon {
        font-size: 18px;
    }

    .showtime-content {
        font-size: 13px;
    }

    .showtime-time {
        font-size: 15px;
    }
}

/* Hiệu ứng fade in khi load */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.doo-showtime-info {
    animation: fadeInLeft 0.4s ease;
}
