.my-movie {
    display: flex;
    flex-direction: column;
}

.my-movie-main {
    display: flex;
    flex-wrap: wrap;
}

.my-movie-image {
    flex: 0.6;
}

.my-movie-info {
    flex: 2;
    padding-left: 20px;
    padding-top: 20px;
}

.my-movie-posters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

.my-movie-posters img {
    width: calc(20% - 10px);
    margin-bottom: 10px;
}
.my-movie-header {
    background-color: #292929;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    padding: 28px 20px 18px;
}
.my-movie-header span{
    font-size: 15px;
}
/* Movie title */
.my-movie-title {
    font-size: 24px;
    margin: 0;
    color: #FFF;
}
.my-movie-box{
    border: 1px solid #cacaca;
}
.my-movie-placeholder {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef6ff 100%);
    border-style: dashed;
    color: #0f172a;
}
.my-movie-placeholder-inner {
    max-width: 100%;
    text-align: center;
}
.my-movie-placeholder-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.my-movie-placeholder-text {
    font-size: 14px;
    color: #475569;
}
.my-movie-loading-dots {
    display: inline-block;
    min-width: 1.5em;
    text-align: left;
}
/* Movie star */
.my-movie-star {
    font-size: 24px;
    color: #ffc107;
    margin: 0;
}
.my-movie-info{
    font-weight: bold;
}
.my-movie-info span{
    color: #6396f3;
    font-weight: normal;
}
@media (max-width: 767px) {
    .my-movie-main {
        flex-direction: column;
    }

    .my-movie-posters img {
        width: calc(50% - 10px);
    }
}
/* Initially hide the image frame */
   /* Style for the image preview container */
#imagePreviewContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    max-width: 100%; /* Prevent overflowing the screen */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
        }

        /* Style for the image inside the preview container */
#imagePreview {
            max-width: 80%;
            max-height: 80%;
            display: block;
        }

        /* Style for the close button */
#closeButton {
            position: absolute;
            top: 40px;
            right: 20px;
            background-color: #fff;
            padding: 5px 10px;
            border: none;
            cursor: pointer;
        }
#closeButton2 {
            position: absolute;
            bottom: 40px;
            right: 20px;
            background-color: #fff;
            padding: 5px 10px;
            border: none;
            cursor: pointer;
        }