/* /Components/AspectCropper.razor.rz.scp.css */
.cropper-overlay[b-twplygpatv] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.cropper-modal[b-twplygpatv] {
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    overscroll-behavior: contain;
}

.cropper-container[b-twplygpatv] {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    touch-action: pan-x pan-y;
    overscroll-behavior: none;
}

.image-container[b-twplygpatv] {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: contain;
}

    .image-container:active[b-twplygpatv] {
        cursor: grabbing;
    }

.crop-image[b-twplygpatv] {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
    transition: none;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    touch-action: none;
}

.crop-overlay[b-twplygpatv] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.3);
    overscroll-behavior: contain;
    touch-action: none;
}

.controls[b-twplygpatv] {
    margin: 20px 0;
}

.zoom-control[b-twplygpatv] {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .zoom-control input[type="range"][b-twplygpatv] {
        flex: 1;
    }

.buttons[b-twplygpatv] {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.btn[b-twplygpatv] {
    padding: 8px 16px;
    border: 1px solid;
    border-radius: 4px;
}

@@media (max-width: 500px) {
    .cropper-modal[b-twplygpatv] {
        padding: 15px;
    }

    .zoom-control[b-twplygpatv] {
        font-size: 12px;
    }
}
/* /Components/FeedItem.razor.rz.scp.css */
.feed-item[b-as23gj3h00] {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 324px;
    background: #ccc;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none; /* Disable iOS callout */
    -webkit-user-select: none; /* Disable text selection */
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
    touch-action: manipulation;
}

    .feed-item.selected[b-as23gj3h00]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: 3px solid red;
        pointer-events: none;
        z-index: 2;
    }

    .feed-item *[b-as23gj3h00] {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

.feed-item-controls-left[b-as23gj3h00] {
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.feed-item-controls-right[b-as23gj3h00] {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.2s ease;
}

.feed-item.selected .feed-item-controls-left[b-as23gj3h00],
.feed-item.selected .feed-item-controls-right[b-as23gj3h00],
.feed-item.no-image .feed-item-controls-left[b-as23gj3h00],
.feed-item.no-image .feed-item-controls-right[b-as23gj3h00] {
    opacity: 1;
}

@media (hover: hover) {
    .feed-item:hover .feed-item-controls-left[b-as23gj3h00], .feed-item:hover .feed-item-controls-right[b-as23gj3h00] {
        opacity: 1;
    }
}

@media (hover: none) {
    .feed-item .feed-item-controls-left[b-as23gj3h00], .feed-item .feed-item-controls-right[b-as23gj3h00] {
        display: none;
    }

    .feed-item.selected .feed-item-controls-left[b-as23gj3h00],
    .feed-item.selected .feed-item-controls-right[b-as23gj3h00],
    .feed-item.no-image .feed-item-controls-left[b-as23gj3h00],
    .feed-item.no-image .feed-item-controls-right[b-as23gj3h00] {
        display: block;
    }
}

.control-button[b-as23gj3h00] {
    border: 1px solid;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 3px;
}

.fake-button[b-as23gj3h00] {
    border: 1px solid;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    background: #E0E0E0;
}

    .fake-button:hover[b-as23gj3h00] {
        background: #CCCCCC;
    }
/* /Components/FeedSidebar.razor.rz.scp.css */
.feed-selector[b-vmoatf1dek] {
    width: 260px;
    border-right: 1px solid #ccc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* old IE/Edge */
}

.feed-selector-button[b-vmoatf1dek] {
    width: 100%;
    margin-bottom: 2px;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    border-bottom: 1px solid black;
    flex-shrink: 0;
}

.feed-list[b-vmoatf1dek] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
}

.feed-option[b-vmoatf1dek] {
    display: block;
    padding: 6px 10px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    min-height: 44px;
    box-sizing: border-box;
    flex-shrink: 0;
}

    .feed-option:hover[b-vmoatf1dek] {
        background: #f5f5f5;
    }

    .feed-option.selected[b-vmoatf1dek] {
        border-top: 1px solid #007bff;
        border-bottom: 1px solid #007bff;
        background: #eef6ff;
    }

.feed-content[b-vmoatf1dek] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    gap: 8px;
    min-height: 32px;
}

.feed-name[b-vmoatf1dek] {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.2;
}

.feed-option-actions[b-vmoatf1dek] {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    align-items: center;
}

.rename-container[b-vmoatf1dek] {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.rename-input[b-vmoatf1dek] {
    flex: 1;
    min-width: 0;
    padding: 4px 6px;
    font-size: 14px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
    outline: none;
}

    .rename-input:focus[b-vmoatf1dek] {
        border-color: #007bff;
        box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    }

.rename-feed-btn[b-vmoatf1dek],
.delete-feed-btn[b-vmoatf1dek],
.rename-confirm-btn[b-vmoatf1dek] {
    border: 1px solid;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 3px;
}
/* /Layout/Footer.razor.rz.scp.css */
.footer p[b-ehpzjg8hec] {
}
/* /Layout/TopBar.razor.rz.scp.css */
.nav-menu[b-2cg1yg7z18] {
    padding: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
    position: relative;
}

.brand[b-2cg1yg7z18]  a {
    font-size: 1.5rem;   
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    padding-right: 2rem;
}

.nav-links[b-2cg1yg7z18] {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

    .nav-links[b-2cg1yg7z18]  a {
        text-decoration: none;
        font-weight: 500;
    }

/* Initially hide nav links on small screens */
.nav-links[b-2cg1yg7z18] {
    display: flex;
}

.hamburger[b-2cg1yg7z18] {
    display: none;
    border: none;
    cursor: pointer;
    background: none;
}

    .hamburger:hover[b-2cg1yg7z18] {
        background: none;
    }

/* Media query for small screens */
@media screen and (max-width: 768px) {
    .nav-links[b-2cg1yg7z18] {
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 0 1rem 1rem 1rem;
        background: var(--background);
        border-bottom: 1px solid;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 2000000;
    }

    .hamburger[b-2cg1yg7z18] {
        display: block;
    }

    .nav-links.show[b-2cg1yg7z18] {
        display: flex;
    }
}

@media screen and (max-width: 580px) {
    .donate-text[b-2cg1yg7z18] {
        display: none;
    }
}
/* /Pages/Help.razor.rz.scp.css */
.control-button[b-ksv4fodi1j] {
    margin: 1px;
    border: 1px solid;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    vertical-align: middle;
}

.help-container[b-ksv4fodi1j] {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    padding: 1rem 40px;
    width: 100%;
    margin: 0 auto;
}

    .help-container h1[b-ksv4fodi1j] {
        font-size: 2.5rem;
    }

    .help-container h2[b-ksv4fodi1j] {
        font-size: 1.5rem;
    }

    .help-container ul[b-ksv4fodi1j] {
        padding-left: 20px;
    }

    .help-container details[b-ksv4fodi1j] {
        padding: 12px;
        margin-bottom: 5px;
        border: 1px solid;
        border-radius: 8px;
    }

    .help-container summary[b-ksv4fodi1j] {
        font-weight: bold;
        cursor: pointer;
    }

    .help-container details p[b-ksv4fodi1j] {
        margin-bottom: 0;
    }

    .help-container section[b-ksv4fodi1j] {
        margin-bottom: 0.5rem;
    }
/* /Pages/Home.razor.rz.scp.css */
.startButton[b-wia18l4a6e] {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background-color 0.3s, transform 0.2s;
}

    .startButton:hover[b-wia18l4a6e] {
        transform: scale(1.05);
    }

.home-container[b-wia18l4a6e] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 40px;
}

.main-section[b-wia18l4a6e] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.main-section-text[b-wia18l4a6e] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .main-section-text h1[b-wia18l4a6e] {
        font-size: clamp(2rem, 4vw, 3.5rem);
        margin-bottom: 1.5rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .main-section-text p[b-wia18l4a6e] {
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        margin-bottom: 1.5rem;
        opacity: 0.9;
    }

        .main-section-text p:last-of-type[b-wia18l4a6e] {
            margin-bottom: 2.5rem;
        }

.preview-video[b-wia18l4a6e] {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .preview-video video[b-wia18l4a6e] {
        width: 100%;
        max-width: 1000px;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

.features-section[b-wia18l4a6e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature[b-wia18l4a6e] {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: left;
}

    .feature:hover[b-wia18l4a6e] {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

    .feature h2[b-wia18l4a6e] {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 600;
        line-height: 1.3;
    }

    .feature p[b-wia18l4a6e] {
        font-size: 1rem;
        line-height: 1.6;
        opacity: 0.8;
    }

.donation-section[b-wia18l4a6e] {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.donation-text h3[b-wia18l4a6e] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.donation-text p[b-wia18l4a6e] {
    font-size: 1.1rem;
    margin: 0 auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .home-container[b-wia18l4a6e] {
        padding: 1rem 20px;
    }

    .main-section[b-wia18l4a6e] {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }

    .features-section[b-wia18l4a6e] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature[b-wia18l4a6e] {
        padding: 1.5rem;
        text-align: center;
    }

    .donation-section[b-wia18l4a6e] {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .home-container[b-wia18l4a6e] {
        padding: 1rem 15px;
    }

    .main-section[b-wia18l4a6e] {
        gap: 1.5rem;
    }

    .feature[b-wia18l4a6e] {
        padding: 1.25rem;
    }
}
/* /Pages/Planner.razor.rz.scp.css */
.page[b-7i3lkmsjn4] {
    display: flex;
    padding: var(--page-padding);
    height: 100%;
}

.planner-wrapper[b-7i3lkmsjn4] {
    display: flex;
    height: 100%;
    width: 100%;
    border: 1px solid;
    overflow: hidden;
}

.planner-button[b-7i3lkmsjn4] {
    width: 100%;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    border-bottom: 1px solid;
}

.planner-page[b-7i3lkmsjn4] {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.feed-grid-container[b-7i3lkmsjn4] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
}

.feed-grid[b-7i3lkmsjn4] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 2px 5px;
    gap: 1px;
    max-width: 972px;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* old IE/Edge */
}

@media (max-width: 800px) {
    .page[b-7i3lkmsjn4] {
        padding: 0rem;
    }

    .planner-wrapper[b-7i3lkmsjn4] {
        border: 0px;
    }

    .feed-grid[b-7i3lkmsjn4] {
        padding: 2px 1px;
    }

    .feed-sidebar-container[b-7i3lkmsjn4] {
        display: none !important;
    }

    .planner-page[b-7i3lkmsjn4] {
        width: 100%;
    }
}
