/* Wrapper for slotmachine and button */
#slotmachine-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Slotmachine container */
#slotmachine {
    display: flex;
    gap: 10px; /* space between reels */
    margin: 20px 0;
}

/* Single reel container */
.reel {
    width: 100px;
    height: 300px;
    overflow: hidden;
    border: 2px solid #ccc;
    background: black; /* avoid white flash while spinning */
    position: relative;
}

/* Reel symbols container */
.icons {
    height: 2700px;
    display: flex;
    flex-direction: column;
    background-color: #0805f2;
}

/* Symbol images */
.icons img {
    width: 100px;
    height: 100px;
    scroll-snap-align: start;
}

/* Minimal button styling to allow full customization by developer */
#spin-button {
    cursor: pointer;
}
