/* Main Container Styles */
.tmdb-full-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tmdb-full-table th {
    background: #222;
    color: #fff;
    padding: 8px;
    width: 200px;
}

.tmdb-full-table td {
    padding: 8px;
    border: 1px solid #e6e6e6;
    background: #000000;
    color: #ffffff;
}

/* Backdrop Styles */
.tmdb-backdrops-vertical {
    margin-top: 16px;
}

.tmdb-backdrop-block {
    margin-bottom: 12px;
}

.tmdb-backdrop-full {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Article Content Styles */
.tmdb-custom-article {
    margin-top: 18px;
    padding: 12px;
    background: #000000;
    border-left: 4px solid #ddd;
    color: #ffffff;
}

/* Related Items Grid */
.tmdb-related-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tmdb-related-item {
    width: 120px;
    text-align: center;
    background: #000000;
    color: #ffffff;
}

.tmdb-more-list {
    margin-left: 20px;
    color: #ffffff;
}

/* Lightbox Styles */
.tmdb-lightbox-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

.tmdb-lightbox-overlay img {
    max-width: 95%;
    max-height: 95%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    border-radius: 6px;
}

.tmdb-lightbox-close {
    position: absolute;
    right: 18px;
    top: 18px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    font-weight: 700;
}

/* Additional Global Styles for Detail Page */
.tmdb-detail-container {
    background: #000000;
    color: #ffffff;
}

.tmdb-content-section {
    background: #000000;
    color: #ffffff;
    padding: 15px;
    margin: 10px 0;
}

.tmdb-text-content {
    background: #000000;
    color: #ffffff;
}

.tmdb-info-block {
    background: #000000;
    color: #ffffff;
    border: 1px solid #333;
    padding: 10px;
    margin: 5px 0;
}

.tmdb-overview-section {
    background: #000000;
    color: #ffffff;
    padding: 15px;
}

/* Ensure all text is visible on black background */
.tmdb-full-table,
.tmdb-custom-article,
.tmdb-related-item,
.tmdb-content-section,
.tmdb-text-content,
.tmdb-info-block,
.tmdb-overview-section {
    color: #ffffff !important;
}

/* Link colors for better visibility */
.tmdb-detail-container a {
    color: #ffffff;
    text-decoration: underline;
}

.tmdb-detail-container a:hover {
    color: #cccccc;
}