.starday-video-player-block {
    margin: 20px 0;
}

.starday-video-player-wrapper {
    margin: 20px 0;
    position: relative;
}

.video-preview {
    position: relative;
}

.video-placeholder {
    position: relative;
    min-height: 200px;
}

.starday-video-error {
    padding: 20px;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    text-align: center;
}

/* Estilos específicos para o editor Gutenberg */
.editor-styles-wrapper .starday-video-player-block .video-preview {
    border: 1px solid #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
}

.editor-styles-wrapper .starday-video-player-block textarea {
    font-family: monospace;
    font-size: 12px;
}

/* Estilos para o Video.js */
.video-js {
    width: 100%;
    height: auto;
}

.video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 1.5em;
    height: 1.5em;
    width: 3em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: 0.06666em solid #fff;
    background-color: #2B333F;
    background-color: rgba(43, 51, 63, 0.7);
    border-radius: 0.3em;
    transition: all 0.4s;
    transform: translate(-50%, -50%);
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
    border-color: #fff;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, 0.5);
    transition: all 0s;
}

.vjs-theme-sea {
    color: #fff;
}
.vjs-theme-sea .vjs-control,
.vjs-theme-sea .vjs-control-bar {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.vjs-theme-forest .vjs-control-bar {
    background: rgba(46, 125, 50, 0.7);
}

.vjs-theme-city .vjs-control-bar {
    background: rgba(97, 97, 97, 0.7);
}

/* Responsividade */
@media (max-width: 768px) {
    .video-js .vjs-big-play-button {
        font-size: 2.5em;
        height: 1.2em;
        width: 2.4em;
    }
}