@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;600&display=swap');

body {
    font-family: 'Hind Siliguri', sans-serif;
    /*background-color: #f0f2f5;*/
}

#canvas-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: #e5e7eb;
    touch-action: none;
}

#photo-canvas {
    position: absolute;
    top: 0;
    left: 0;
    cursor: move;
}

#frame-overlay-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    object-fit: contain;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1px;
    font-weight: 600;
    color: #4b5563;
    font-size: 0.9rem;
}

hr {
    border-bottom: 1px solid #ff0000;
    border-top: 0 none;
    margin: 7px 0;
    padding: 0;
}