

/* Main container for YouTube videos */
.youtube-video-container {
    position: relative;
    width: auto; /* Allow developer-defined width */
    height: auto; /* Allow developer-defined height */
    aspect-ratio: 16 / 9; /* Maintain a standard 16:9 aspect ratio */
    background-color: #f2f2f2; /* Fallback color */
    overflow: hidden; /* Prevent overflow issues */
    z-index: 49 !important;
}

/* Placeholder container */
.pdpa-info-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Matches the container width */
    height: 100%; /* Matches the container height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('https://www.toyota.co.th/media/general/yt-cookie-consent-bg-default.webp');
    background-size: cover;
    background-position: center;
    z-index: 6;
}

/* Placeholder overlay text and button container */
.overlay-text {
    z-index: 2;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    padding: 20px;
    border-radius: 5px;
}

.overlay-text .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.overlay-text .desc {
    font-size: 14px;
    margin-bottom: 20px;
}

.overlay-text .btn {
    background-color: #eb081e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

.overlay-text .btn:hover {
    background-color: #ff7878;
}

/* Ensure iframe fills the container if no developer overrides */
.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Default to fill the container */
    height: 100%; /* Default to fill the container */
    border: none; /* Remove iframe borders */
}