/* ArezzoMT2 v303 - muzyka, Start/Stop, przewijanie i pamięć stanu. */
.az303-music-controls {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 10050;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 6px 10px 6px 6px;
    border: 1px solid rgba(228, 182, 93, .46);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(10, 52, 45, .96), rgba(2, 14, 12, .97));
    box-shadow: 0 10px 28px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .06);
    color: #ffe1a0;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.az303-music-toggle,
.az303-play-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 32px;
    padding: 7px 9px;
    border: 1px solid rgba(228, 182, 93, .26);
    border-radius: 10px;
    background: rgba(3, 26, 22, .72);
    color: #ffe1a0;
    font: 900 10px/1 Arial, sans-serif;
    letter-spacing: .7px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, background .15s ease, opacity .15s ease;
}
.az303-play-toggle {
    min-width: 68px;
}
.az303-music-toggle:hover,
.az303-music-toggle:focus-visible,
.az303-play-toggle:hover,
.az303-play-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 232, 163, .7);
    background: rgba(13, 70, 57, .92);
    outline: none;
}
.az303-music-toggle.is-off,
.az303-play-toggle.is-paused {
    opacity: .74;
    color: #cdbb92;
}
.az303-music-toggle.is-blocked,
.az303-play-toggle.is-blocked {
    border-color: rgba(255, 212, 106, .72);
}
.az303-music-icon,
.az303-play-icon {
    width: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
}
.az303-seek-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 235px;
}
.az303-music-seek {
    width: 150px;
    height: 18px;
    margin: 0;
    accent-color: #e4b65d;
    cursor: pointer;
}
.az303-music-seek:disabled {
    opacity: .45;
    cursor: default;
}
.az303-music-time {
    min-width: 68px;
    color: rgba(255, 225, 160, .88);
    font: 700 10px/1 Arial, sans-serif;
    letter-spacing: .15px;
    white-space: nowrap;
    text-align: right;
}
@media (max-width: 700px) {
    .az303-music-controls {
        right: 10px;
        bottom: 10px;
        gap: 6px;
        padding: 5px 8px 5px 5px;
    }
    .az303-music-toggle,
    .az303-play-toggle {
        min-height: 30px;
        padding: 6px 8px;
    }
    .az303-play-toggle {
        min-width: 58px;
    }
    .az303-seek-wrap {
        min-width: 165px;
        gap: 6px;
    }
    .az303-music-seek {
        width: 98px;
    }
    .az303-music-time {
        min-width: 61px;
        font-size: 9px;
    }
}
@media (max-width: 500px) {
    .az303-music-label,
    .az303-play-label {
        display: none;
    }
    .az303-music-toggle,
    .az303-play-toggle {
        min-width: 34px;
        width: 34px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .az303-seek-wrap {
        min-width: 145px;
    }
    .az303-music-seek {
        width: 82px;
    }
}
