/* Styles for movie thumbnail */
.movie-thumbnail {
    text-align: center;
    margin-bottom: 20px;
}

.movie-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Styles for movie details table */
.movie-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.movie-details-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.movie-details-table td strong {
    display: inline-block;
    width: 150px;
}

.trailer-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

.trailer-modal iframe {
    width: 560px;
    height: 315px;
    border: none;
}





/* Close button styles */
.trailer-close {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 18px;
    color: #000;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 10000;
}

.trailer-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Styles for trailer link */
.trailer-link {
    display: inline-flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.trailer-link i {
    margin-right: 5px; /* Space between icon and text */
}