#snapcam-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: black;
}

#camera-feed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#lens-carousel {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    overflow-x: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    gap: 10px;
}

.lens-button {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid white;
    background-color: white;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    cursor: pointer;
}
