body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
}

.page-header {
    text-align: center;
    margin-bottom: 20px;
}


.page-footer {
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f0f0f0; /* Optional background color */
    padding: 10px 0; /* Optional padding */
}

.carousel-container {
    width: 250px;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 250px;
    flex-shrink: 0;
    display: flex;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.carousel-prev,
.carousel-next {
    cursor: pointer;
    position: absolute;
    /* Position them absolutely */
    top: 50%;
    /* Vertically center them */
    transform: translateY(-50%);
    /* Center them vertically */
}

.carousel-prev {
    left: 10px;
    /* Adjust the distance from the left edge */
}

.carousel-next {
    right: 10px;
    /* Adjust the distance from the right edge */
}

.actress-profile {
    text-align: center;
}

.actress-image {
    max-width: 100%; /* Ensure the image fits within its container */
}

.actress-biography {
    text-align: center;
    max-width: 60%;
    margin: 20px auto;
}

.actress-biography-content {
    overflow: hidden;
    line-height: 1.5;
    /* Set line height for readability */
    max-height: 6em;
    /* Display only first 4 lines (adjust as needed) */
}

.actress-biography-content.expanded {
    max-height: none;
    /* Display all content when expanded */
}

.read-more-link {
    cursor: pointer;
    color: blue;
}



.movie-list {
    max-width: 60%;
    margin: 20px auto;
}

.movie-item {
    margin-bottom: 20px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.movie-poster {
    max-width: 600px;
    width: 100%;
    margin-right: 20px;
}

.movie-info {
    flex: 1;
}

.movie-title {
    font-weight: bold;
}

.movie-genres {
    margin-top: 10px;
}

.movie-overview {
    margin-top: 10px;
}

.movie-casts-title {
    font-weight: bold;
    margin-top: 10px;

}