.movies-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.movies-table th, .movies-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.movies-table th {
    background-color: #f4f4f4;
}
.explore-more-btn {
    background: #0073aa;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
}
.explore-more-btn:hover {
    background: #005177;
}
.single-movie-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.single-movie-container h1 {
    text-align: center;
    margin-bottom: 20px;
}
.single-movie-container .movie-poster {
    text-align: center;
    margin-bottom: 20px;
}
.single-movie-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

.movie-main-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.movie-description {
    font-size: 16px;
    margin-bottom: 20px;
}

.movie-poster {
    text-align: center;
    margin-bottom: 30px;
}

.movie-details-table {
    width: 100%;
    border-collapse: collapse;
}

.movie-details-table th {
    width: 30%;
    background: #f5f5f5;
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.movie-details-table td {
    padding: 12px;
    border: 1px solid #ddd;
}

.trailer-btn {
    background: #e50914;
    color: #fff;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 4px;
}

.trailer-btn:hover {
    background: #b20710;
}
