/*
    copyright (c) 2025 Tino Mettler

    darktable is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    darktable is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this software.  If not, see <http://www.gnu.org/licenses/>.
*/

* {
    margin: 0;
    padding: 0;
}

.slider {
    display: none;
    position: relative;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.slider .slides {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 0px 1vw;
    scrollbar-width: none;
    object-fit: contain;
    background-color: black;
}

.slider .slides .slide {
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    object-fit: contain;
    align-items: center;
}

.slider .slides .slide img {
    object-fit: contain;
    width: 100vw;
    height: 95vh;
}
