.digitalstream-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.digitalstream-title {
    background: #111;
    color: #fff;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Ratio 16:9 forcé, quel que soit l'écran */
.digitalstream-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 9 / 16 = 0.5625 */
    background: #000;
}

.digitalstream-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.digitalstream-offline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 16px;
    background: #000;
    pointer-events: none;
}

.digitalstream-offline-overlay.digitalstream-hidden {
    display: none;
}

.digitalstream-error {
    color: #c0392b;
    font-weight: 600;
}
