.biz-media {
    transition: transform 0.3s ease;
    transform-origin: center;
    padding: 0.5rem;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.biz-media:hover {
    transform: scale(1.03); /* Slightly enlarge the element on hover (3%) */
    /* Optional: Add a subtle shadow for depth */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.biz-media:nth-child(odd) {
    background-color: var(--website-business-media-bg); /* Light gray for odd items */
}
.biz-media:nth-child(even) {
    background-color: #ffffff;
}


.biz-media-login {
    transition: transform 0.3s ease;
    transform-origin: center;
    padding: 0.5rem;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.biz-media-login:hover {
    transform: scale(1.03); /* Slightly enlarge the element on hover (3%) */
    /* Optional: Add a subtle shadow for depth */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.biz-media-login:nth-child(odd) {
    background-color: var(--website-business-media-bg); /* Light gray for odd items */
}
.biz-media-login:nth-child(even) {
    background-color: #ffffff;
}



.free-text {
    color: var(--website-free-text);
}

.non-free-text {
    color: var(--website-free-text);
}

.biz-title {
    display: inline;
    font-weight: bold;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.biz-media-title {

}

.biz-media-description {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}



.secure-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secure-video-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

#video-error-display {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4444;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    z-index: 99999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
}

#video-error-display {
    z-index: 9999999999 !important;
}


/* Ensure video controls are visible */
video {
    object-fit: contain;
}

.secure-video-modal video::-webkit-media-controls {
    display: flex !important;
}

.secure-video-modal video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.5)) !important;
}

.secure-video-modal video::-webkit-media-controls-play-button,
.secure-video-modal video::-webkit-media-controls-current-time-display,
.secure-video-modal video::-webkit-media-controls-time-remaining-display {
    color: white !important;
}

/* For Firefox */
.secure-video-modal video::-moz-range-track {
    background: rgba(255,255,255,0.2);
}

.secure-video-modal video::-moz-range-thumb {
    background: white;
}