/* fv-plugin.css */
#fv-container {
    background: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    z-index: 2147483647 !important;
    /* Initially forced to bottom left */
    bottom: 10px !important;
    left: 10px !important;
    top: auto !important;
    right: auto !important;
}

#fv-video-element {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#fv-controls {
    position: absolute;
    bottom: 5px;
    left: 5px;
    z-index: 100;
}

.fv-control-button {
    background: rgba(0,0,0,0.8);
    border: none;
    color: #fff;
    padding: 5px 10px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 3px;
}

.fv-control-select {
    background: rgba(0,0,0,0.8);
    color: #fff;
    border: none;
    padding: 5px;
    margin-right: 5px;
    border-radius: 3px;
}

#fv-nav-links {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 100;
    background: rgba(255,153,0,0.9); /* Prominent orange background */
    padding: 5px;
    border-radius: 5px;
}

.fv-nav-link {
    color: #fff;
    background: rgba(0,0,0,0.8);
    padding: 5px 10px;
    margin: 3px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
}

.fv-nav-link:hover {
    background: rgba(255,215,0,0.9);
}

/* Responsive adjustments for mobile */
@media only screen and (max-width: 600px) {
    #fv-container {
        width: 90% !important;
        height: auto !important;
        left: 5% !important;
        bottom: 10px !important;
    }
    #fv-video-element {
        height: auto !important;
    }
}
