.digikrom-lights-wrapper {
    position: relative;
    width: 100%;
}

.digikrom-lights-container {
    position: relative;
    width: 100%;
    min-height: 400px; 
    background-color: #000;
    overflow: hidden;
}

.digikrom-lights-container canvas {
    display: block;
}

/* Stylowy panel sterowania */
.digikrom-lights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.digikrom-lights-btn {
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-family: 'Orbitron', sans-serif; /* Jeśli masz ten font, jak nie to sans-serif */
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
}

.digikrom-lights-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.5);
    transform: scale(1.05);
}

/* Mały przycisk pauzy widoczny po uruchomieniu */
.digikrom-lights-container.is-active .digikrom-lights-overlay {
    height: auto;
    top: auto;
    bottom: 30px;
    background: transparent;
}