@import '_content/BlazorForge.Web.Mud/BlazorForge.Web.Mud.mqshd9hlbj.bundle.scp.css';

/* _content/CounselHub.Web.Admin/Components/Pages/NotesByHand.razor.rz.scp.css */
.notes-scroll-container[b-a2rvpz0vfk] {
    width: 100%;
    height: calc(100vh - 200px);
    overflow: auto;
    background-color: #e0e0e0;
    display: block;
    padding: 20px;
    padding-bottom: 100px; /* Ensure extra space at bottom to prevent cropping */
    /* Delegate all touch handling (panning + pinch-zoom) to our JS logic */
    touch-action: none;
}

.notes-surface[b-a2rvpz0vfk] {
    margin: 0 auto;
    overflow: hidden; /* Clip unscaled layout box of the wrapper to ensure scrollbars match the scaled surface size */
}

.notes-zoom-wrapper[b-a2rvpz0vfk] {
    transform-origin: 0 0;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    padding-bottom: 80px;
    align-items: center;
}

.note-page[b-a2rvpz0vfk] {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    transition: width 0.3s, height 0.3s;
}

.note-page.portrait[b-a2rvpz0vfk] {
    width: 794px;
    height: 1123px;
}

.note-page.landscape[b-a2rvpz0vfk] {
    width: 1123px;
    height: 794px;
}

/* Backgrounds */
.bg-lines[b-a2rvpz0vfk] {
    background-image: linear-gradient(#ccc 1px, transparent 1px);
    background-size: 100% 40px;
    background-position: 0 40px;
}
.bg-grid[b-a2rvpz0vfk] {
    background-image: linear-gradient(#eee 1px, transparent 1px), linear-gradient(90deg, #eee 1px, transparent 1px);
    background-size: 40px 40px;
}
.bg-dots[b-a2rvpz0vfk] {
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 20px 20px;
}
.bg-fke[b-a2rvpz0vfk] {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

canvas[b-a2rvpz0vfk] {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    touch-action: none;
}

.selected-color[b-a2rvpz0vfk] {
    border: 2px solid var(--mud-palette-primary);
    border-radius: 50%;
}
