#la-vu-container {
    width: 100%;
    background: transparent !important;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none !important;
}

#la-vu-canvas {
    width: 100%;
    height: 180px;
    background: transparent !important;
}

#la-vu-status {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    text-align: center;
}

.la-marquee {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: la-scroll 15s linear infinite;
    color: #0066ff;
    font-family: sans-serif;
    font-size: 13px;
}

@keyframes la-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
}

.vu-active #la-vu-status { display: none !important; }