﻿.reels-container {
    height: 100vh;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 60px 2px 10px 2px;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .reels-container::-webkit-scrollbar {
        display: none;
    }

.reel-card {
    width: 100%;
    height: calc(100vh - 60px - 60px);
    flex-shrink: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .reel-card > .mud-card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }


.square-container {
    width: 100px;
    height: 100px;
    border: 2px solid #444;
    position: relative;
    overflow: hidden;
    background-color: #eee;
}

.square-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4CAF50;
    transition: height 0.3s ease;
}
