/* ========== PORTRAIT VIDEO PLAYER MODULE ========== */
/* Main container - target this for placement */
.portrait-video-module {
    /* Add any positioning/margin needed for your layout */
}

/* Video container - maintains aspect ratio */
.pvm-video-container {
    position: relative;
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
    background: #000;
}

.pvm-video-container iframe {
    width: 100%;
    height: 560px;
    display: block;
}

/* Modal styling */
.pvm-modal .modal-content {
    background: transparent;
    border: none;
}

.pvm-modal .modal-header {
    border: none;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    padding: 0;
}

.pvm-modal .modal-header .btn-close {
    filter: invert(1);
    opacity: 1;
    background-size: 1.25rem;
}

/* Mute button styling */
.pvm-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.pvm-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.pvm-mute-btn i {
    font-size: 1.25rem;
}