.inner-player {
    position: relative;
    padding-top: 56.25%;
    min-height: 200px; /* Adjust based on typical player height */
}
#fluid_video_wrapper_thisPlayer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fluid_html_on_pause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; /* Match Fluid Player’s default button size */
    height: 80px;
    margin: 0;
}
.view-selector {
    margin: 20px 0;
    text-align: center;
}
.view-selector .form-control {
    display: inline-block;
    width: auto;
    max-width: 200px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}
.view-selector .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.tip-inline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            padding: 8px 14px;
            border-radius: 20px;
            border: 1px solid #93c5fd;
            font-size: 14px;
            color: #1e40af;
            transition: all 0.2s ease;
            cursor: default;
        }

        .tip-inline:hover {
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
        }

        .tip-icon {
            font-size: 12px;
            font-weight: 500;
        }

        .tip-text {
            font-weight: 400;
            white-space: nowrap;
        }

        .tip-highlight {
            font-weight: 500;
            color: #1d4ed8;
        }
