/* /Layout/FunscriptInput.razor.rz.scp.css */
.boundry[b-rkw7x3jsip] {
    max-width: 350px;
}

.drop-zone[b-rkw7x3jsip] {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: border-color 0.3s, background-color 0.3s;
    cursor: pointer;
    margin-bottom: 1rem;
}

.drop-zone.drag-over[b-rkw7x3jsip] {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.drop-zone p[b-rkw7x3jsip] {
    margin: 0;
    color: #666;
}

.drop-zone.drag-over p[b-rkw7x3jsip] {
    color: #007bff;
}
/* /Layout/HandyConnect.razor.rz.scp.css */
.handy-status-button[b-kjh46c8a2x] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 999px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    font: inherit;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.handy-status-button:hover[b-kjh46c8a2x] {
    background: var(--bg-tertiary);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

.handy-status-button:focus[b-kjh46c8a2x] {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
}

.handy-status-indicator[b-kjh46c8a2x] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b0b7c3;
    box-shadow: 0 0 0 3px rgba(176, 183, 195, 0.15);
}

.handy-status-indicator.connected[b-kjh46c8a2x] {
    background: #2fb36d;
    box-shadow: 0 0 0 3px rgba(47, 179, 109, 0.18);
}

.handy-status-indicator.disconnected[b-kjh46c8a2x] {
    background: #d05c5c;
    box-shadow: 0 0 0 3px rgba(208, 92, 92, 0.16);
}

.handy-modal-backdrop[b-kjh46c8a2x] {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px 16px;
    background: rgba(9, 15, 25, 0.55);
}

.handy-modal[b-kjh46c8a2x] {
    width: min(100%, 420px);
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.handy-modal-header[b-kjh46c8a2x],
.handy-modal-actions[b-kjh46c8a2x] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
}

.handy-modal-header[b-kjh46c8a2x] {
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.handy-modal-header h3[b-kjh46c8a2x] {
    margin: 0;
    font-size: 1.1rem;
}

.handy-modal-body[b-kjh46c8a2x] {
    padding: 18px;
}

.handy-field-label[b-kjh46c8a2x] {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.handy-input[b-kjh46c8a2x] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font: inherit;
    box-sizing: border-box;
}

.handy-input:focus[b-kjh46c8a2x] {
    outline: 2px solid var(--border-focus);
    outline-offset: 1px;
}

.handy-info-loading[b-kjh46c8a2x] {
    margin: 0;
    color: var(--text-secondary);
}

.handy-info-grid[b-kjh46c8a2x] {
    display: grid;
    gap: 12px;
}

.handy-info-row[b-kjh46c8a2x] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.handy-info-row:last-child[b-kjh46c8a2x] {
    padding-bottom: 0;
    border-bottom: none;
}

.handy-info-label[b-kjh46c8a2x] {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.handy-info-value[b-kjh46c8a2x] {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.handy-feedback[b-kjh46c8a2x] {
    margin: 12px 0 0;
    font-size: 0.95rem;
}

.handy-feedback.success[b-kjh46c8a2x] {
    color: #2fb36d;
}

.handy-feedback.error[b-kjh46c8a2x] {
    color: #d05c5c;
}

.handy-modal-actions[b-kjh46c8a2x] {
    justify-content: flex-end;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.handy-primary-button[b-kjh46c8a2x],
.handy-secondary-button[b-kjh46c8a2x],
.handy-close-button[b-kjh46c8a2x] {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.handy-primary-button[b-kjh46c8a2x],
.handy-secondary-button[b-kjh46c8a2x] {
    padding: 10px 16px;
}

.handy-primary-button[b-kjh46c8a2x] {
    background: var(--accent-primary);
    color: #fff;
}

.handy-secondary-button[b-kjh46c8a2x],
.handy-close-button[b-kjh46c8a2x] {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.handy-close-button[b-kjh46c8a2x] {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.handy-primary-button:hover[b-kjh46c8a2x],
.handy-secondary-button:hover[b-kjh46c8a2x],
.handy-close-button:hover[b-kjh46c8a2x] {
    transform: translateY(-1px);
    opacity: 0.92;
}

.handy-primary-button:disabled[b-kjh46c8a2x],
.handy-secondary-button:disabled[b-kjh46c8a2x] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 640px) {
    .handy-status-button[b-kjh46c8a2x] {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .handy-modal-backdrop[b-kjh46c8a2x] {
        padding-top: 64px;
    }

    .handy-info-row[b-kjh46c8a2x] {
        flex-direction: column;
        gap: 4px;
    }

    .handy-info-value[b-kjh46c8a2x] {
        text-align: left;
    }
}
/* /Layout/Htmlcanvas.razor.rz.scp.css */
.download_button[b-p7id5jtjgi] {
    position: relative;
    top: 40px;

    justify-content: center;

}

.magnifier-popup[b-p7id5jtjgi] {
    position: fixed;
    z-index: 1100;
    pointer-events: none;
    border: 2px solid var(--border-primary, #606262);
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    background: var(--bg-secondary, #2a2a2a);
    padding: 2px;
}

.magnifier-popup canvas[b-p7id5jtjgi] {
    display: block;
    border-radius: 4px;
}

.magnifier-info[b-p7id5jtjgi] {
    margin-top: 4px;
    padding: 4px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    color: var(--text-primary, #f2f2f2);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    display: none;
}
/* /Layout/Offset.razor.rz.scp.css */
.Offset[b-mspvnugpw4] {

    margin: 10px;
    margin-top: 5px;
}

.button1[b-mspvnugpw4] {
    margin: 10px;

}
/* /Layout/Timeline.razor.rz.scp.css */
.timeline[b-tj7epbwqq1] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    margin: 0px 0px;
    border-top: 1px solid var(--border-primary);
    overflow: visible;
    width: 100%;
}

.timeline .dot[b-tj7epbwqq1] {
    display: inline-block;
    width: 0px;
    height: 5px;
    border-left: 3px solid var(--border-primary);
}

.timeline .dot.blue[b-tj7epbwqq1],
.timeline .dot.text[b-tj7epbwqq1] {
    height: 20px;
    position: relative;
    /* transition: 0.5s height ease; */
}


.timeline .dot[b-tj7epbwqq1]:after {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    bottom: -20px;
    background: red;
    border-radius: 50% 50% 0 50%;
    /* transform: rotate(-135deg); */
    width: 0px;
    height: 0px;
    transition: 0.5s all ease;
}

.timeline .dot.blue[b-tj7epbwqq1]:after {
    width: 30px;
    height: 30px;
}


.timeline .dot.blue[b-tj7epbwqq1]:after {
    background: blue;
}

.timeline .dot.text[b-tj7epbwqq1]:after {
    display: inline-block;
    /* Adjust display property */
    width: auto;
    height: auto;
    padding: 5px 10px;
    /* Adjust padding as needed */
    background-color: transparent;
    /* Change color as needed */
    color: var(--text-primary);
    /* Text color */
    font-size: 12px;
    /* Adjust font size as needed */
    border-radius: 5px;
    /* Adjust border radius as needed */
    text-align: right;
    /* Center text */
    content: attr(data-text);
    /* Set content to value of data-text attribute */
}

/* Light mode specific styling for timeline text */
[data-bs-theme="light"] .timeline .dot.text[b-tj7epbwqq1]:after {
    color: var(--text-muted);
    /* Light gray text for better contrast in light mode */
}
/* /Layout/User_modification_selection.razor.rz.scp.css */
.control_flex[b-v3fifftndd] {


    margin: 5px auto;
    display: grid;
    grid-template-columns: minmax(150px, 0.9fr) 3fr;
    gap: 20px;

}

.below-control-flex[b-v3fifftndd] {
    flex-grow: 1;
    display: flex;
    max-width: 800px;
    max-height: 800px;
    margin: 0 auto;
    /* Add styling as needed */
}

.button_flex .btn[b-v3fifftndd] {
    min-height: 40px;
    height: auto;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;

    /* Ensure centering if needed, though loading might affect text */
    align-items: center;
    /* Vertically center text */
}

/*.button_flex {
    display: block;
    gap: 10px;
}*/

.card[b-v3fifftndd] {
    background: var(--bg-card);
    box-shadow: 0 0 10px var(--shadow-primary);
    margin-right: 20px;
    border: 1px solid var(--border-primary);
}

.card-body[b-v3fifftndd] {
    padding: 20px;
}

.btn-block[b-v3fifftndd] {
    width: 100%;
    text-align: left;
}

.right-side-component-container[b-v3fifftndd] {
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*.Offset {

    margin: 10px;
    margin-top: 5px;
}*/
/* /Layout/VideoCanvasPlayer.razor.rz.scp.css */
.video-canvas-shell[b-uhevd3aipm] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-player-card[b-uhevd3aipm] {
    width: 100%;
}

.video-player-frame[b-uhevd3aipm] {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video-player-frame.vr-session-active[b-uhevd3aipm] {
    min-height: 220px;
}

.video-player-frame:fullscreen[b-uhevd3aipm] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: #000;
    border-radius: 0;
}

.video-player-frame:fullscreen .video-player[b-uhevd3aipm] {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 0;
}

.video-player[b-uhevd3aipm] {
    display: block;
    width: 100%;
    max-height: 620px;
    border-radius: 8px;
    background: #000;
}

.video-player-frame.vr-session-active .video-player[b-uhevd3aipm] {
    visibility: hidden;
}

.video-vr-render-canvas[b-uhevd3aipm] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    pointer-events: none;
}

.video-vr-preview-paused[b-uhevd3aipm] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background:
        radial-gradient(circle at top, rgba(77, 171, 247, 0.18), transparent 55%),
        rgba(4, 7, 12, 0.9);
    text-align: center;
}

.video-player-frame.vr-session-active .video-overlay-toggle[b-uhevd3aipm] {
    opacity: 0.45;
}

.video-overlay-toggle[b-uhevd3aipm] {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(8, 12, 18, 0.72);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.video-fullscreen-toggle[b-uhevd3aipm] {
    right: auto;
    left: 12px;
}

.video-overlay-toggle:hover[b-uhevd3aipm] {
    background: rgba(14, 20, 30, 0.88);
    transform: translateY(-1px);
}

.video-overlay-toggle.active[b-uhevd3aipm] {
    background: rgba(77, 171, 247, 0.92);
    border-color: rgba(77, 171, 247, 1);
    color: #081018;
}

.video-player-meta[b-uhevd3aipm] {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted, #888);
}

.video-player-meta-right[b-uhevd3aipm] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.video-player-script-toggle[b-uhevd3aipm] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: var(--bg-secondary, rgba(255, 255, 255, 0.06));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
}

.video-player-time-setters[b-uhevd3aipm] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.video-script-toggle-button[b-uhevd3aipm] {
    border: none;
    background: transparent;
    color: var(--text-secondary, #98a2b3);
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.video-script-toggle-button.active[b-uhevd3aipm] {
    background: var(--accent-primary, #4dabf7);
    color: #081018;
}

.video-script-toggle-button:disabled[b-uhevd3aipm] {
    opacity: 0.45;
    cursor: not-allowed;
}

.video-time-setter-button[b-uhevd3aipm] {
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    background: var(--bg-secondary, rgba(255, 255, 255, 0.06));
    color: var(--text-secondary, #98a2b3);
    border-radius: 999px;
    padding: 0.32rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.video-time-setter-button:hover[b-uhevd3aipm] {
    background: rgba(77, 171, 247, 0.12);
    border-color: rgba(77, 171, 247, 0.38);
    color: var(--text-primary, #fff);
}

.video-player-handy-status[b-uhevd3aipm] {
    margin-top: 0.45rem;
    font-size: 0.88rem;
    color: var(--text-secondary, #98a2b3);
}

.video-player-handy-status.error[b-uhevd3aipm] {
    color: #d05c5c;
}

@media (max-width: 760px) {
    .video-player-meta[b-uhevd3aipm] {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-player-meta-right[b-uhevd3aipm] {
        width: 100%;
        justify-content: space-between;
    }
}
/* /Layout/VideoUpload.razor.rz.scp.css */
.boundry[b-537qlddmmw] {
    max-width: 350px;
}
.video-upload-card[b-537qlddmmw] {
    margin-top: 0.75rem;
}
.drop-zone[b-537qlddmmw] {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 14px;
    text-align: center;
    transition: border-color 0.3s, background-color 0.3s;
    cursor: pointer;
    margin-bottom: 0.75rem;
}
.drop-zone.drag-over[b-537qlddmmw] {
    border-color: #007bff;
    background-color: #e7f3ff;
}
.drop-zone p[b-537qlddmmw] {
    margin: 0 0 0.65rem;
    color: #666;
    font-size: 0.95rem;
}
.drop-zone.drag-over p[b-537qlddmmw] {
    color: #007bff;
}
.video-details[b-537qlddmmw] {
    font-size: 0.95rem;
}
/* /Layout/VideoVrControls.razor.rz.scp.css */
.video-vr-card[b-eq2pzzyivk] {
    align-self: flex-start;
    width: fit-content;
    max-width: 100%;
    margin-top: 12px;
}

.video-vr-controls[b-eq2pzzyivk] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-vr-actions[b-eq2pzzyivk] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.video-vr-playback[b-eq2pzzyivk] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.video-vr-playback-tip[b-eq2pzzyivk] {
    color: var(--text-muted, #888);
    font-size: 0.86rem;
    line-height: 1.2;
}

.video-vr-layout-label[b-eq2pzzyivk] {
    font-weight: 600;
    margin-bottom: 0;
}

.video-vr-layout-select[b-eq2pzzyivk] {
    width: 180px;
}

.video-vr-status[b-eq2pzzyivk] {
    align-self: flex-start;
    width: fit-content;
    max-width: min(100%, 720px);
    border-radius: 10px;
    padding: 10px 12px;
    background: #eef3f8;
    color: #234;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.video-vr-status.active[b-eq2pzzyivk] {
    background: #e8f7ee;
    color: #1f5a35;
}

.video-vr-status.warning[b-eq2pzzyivk] {
    background: #fff6e4;
    color: #7b5712;
}

.video-vr-mirror-toggle[b-eq2pzzyivk] {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    cursor: pointer;
    user-select: none;
}

.video-vr-mirror-toggle input[b-eq2pzzyivk] {
    margin: 0;
}

@media (max-width: 640px) {
    .video-vr-card[b-eq2pzzyivk] {
        width: 100%;
    }

    .video-vr-status[b-eq2pzzyivk] {
        width: 100%;
    }

    .video-vr-actions[b-eq2pzzyivk] {
        align-items: stretch;
    }

    .video-vr-layout-select[b-eq2pzzyivk] {
        width: 100%;
        min-width: 0;
    }
}
