/**
 * DSBN Slideshow - Pause/Play Button Styles
 * The carousel itself is styled by the theme's dsbn-2026.css.
 * This file only handles the pause button added by the plugin.
 */

.dsbn-carousel-pause {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.dsbn-carousel-pause:hover,
.dsbn-carousel-pause:focus-visible {
    background: rgba(0, 0, 0, 0.8);
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

.dsbn-carousel-pause-icon {
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
}
