/* /Components/App.razor.rz.scp.css */
[b-qvq6cm5ylx] .btn-cta {
    padding: 15px 30px; /* More generous padding */
    font-size: 2rem; /* Slightly larger text */
    background-color: #007BFF;
    color: white;
    border: none;
}

    [b-qvq6cm5ylx] .btn-cta:hover {
        background-color: #3399FF;
    }

    [b-qvq6cm5ylx] .btn-cta:active {
        background-color: #0066CC;
        box-shadow: inset 0px 3px 5px rgba(0, 0, 0, 0.3);
    }


[b-qvq6cm5ylx] .hovering-card-buttons {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

[b-qvq6cm5ylx] .hovering-card:hover .hovering-card-buttons,
[b-qvq6cm5ylx] .hovering-card.active .hovering-card-buttons {
    opacity: 1;
    visibility: visible;
}
/* /Components/Features/Responses/CreateResponse.razor.rz.scp.css */
.topic-card[b-oykdjsxypp] {
    background-color: rgba(13, 24, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
}

.fade-in[b-oykdjsxypp] {
    animation: fadeIn-b-oykdjsxypp 0.4s ease-in-out;
}

@keyframes fadeIn-b-oykdjsxypp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Features/Stories/GetStory.razor.rz.scp.css */
.story-card[b-17i5fbrw7x] {
    background-color: rgba(13, 24, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
}
/* /Components/Layout/AnonymousLayout.razor.rz.scp.css */
/* Variables - applied to the layout wrapper so they cascade */
.layout-wrapper[b-rp4gr71z2e] {
    --honest-dark-blue: #0D182A;
    --honest-card: #12213A;
    --honest-orange: #F97316;
    --honest-orange-hover: #EA580C;
    --honest-light-blue: #60A5FA;

    /* Bootstrap Overrides */
    --bs-body-bg: var(--honest-dark-blue);
    --bs-body-color: #d1d5db;
    --bs-font-sans-serif: 'Lexend', sans-serif;
    --bs-primary: var(--honest-orange);
    --bs-primary-rgb: 249, 115, 22;

    font-family: 'Lexend', sans-serif;
    background-color: var(--honest-dark-blue);
    color: #d1d5db;
}

/* Material Symbols */
[b-rp4gr71z2e] .material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    vertical-align: middle;
}

/* Custom Utilities - using ::deep to apply to children */
[b-rp4gr71z2e] .text-honest-orange {
    color: var(--honest-orange) !important;
}

[b-rp4gr71z2e] .text-honest-light-blue {
    color: var(--honest-light-blue) !important;
}

[b-rp4gr71z2e] .bg-honest-card {
    background-color: var(--honest-card);
}

/* Custom Button */
[b-rp4gr71z2e] .btn-honest-primary {
    background-color: var(--honest-orange);
    border-color: var(--honest-orange);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.2);
    font-weight: 600;
    padding: 0.75rem 2rem;
}

[b-rp4gr71z2e] .btn-honest-primary:hover {
    background-color: var(--honest-orange-hover);
    border-color: var(--honest-orange-hover);
    color: white;
    transform: translateY(-1px);
}

[b-rp4gr71z2e] .card-honest {
    background-color: var(--honest-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

/* Hover Effects */
[b-rp4gr71z2e] .hover-scale {
    transition: transform 0.2s;
}

[b-rp4gr71z2e] .hover-scale:hover {
    transform: scale(1.02);
}

[b-rp4gr71z2e] .hover-text-primary {
    transition: color 0.2s;
}

[b-rp4gr71z2e] .hover-text-primary:hover {
    color: var(--honest-light-blue) !important;
}

/* Animation */
[b-rp4gr71z2e] .fade-in {
    animation: fadeIn-b-rp4gr71z2e 0.5s ease-in;
}

@keyframes fadeIn-b-rp4gr71z2e {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Footer */
footer[b-rp4gr71z2e] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Fallback/Adjustment */
}
/* /Components/Layout/AuthenticatedLayout.razor.rz.scp.css */
.page[b-p8jjjcyu49] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-p8jjjcyu49] {
    flex: 1;
}

.sidebar[b-p8jjjcyu49] {
    background-image: linear-gradient(180deg, #141e30 0%, #243b55 70%);
}

.btn-plain[b-p8jjjcyu49] {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    font: inherit;
    cursor: pointer;
}

.top-row[b-p8jjjcyu49] {
    background-color: #141e30;
    border-bottom: 1px solid #243b55;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-p8jjjcyu49]  a, .top-row[b-p8jjjcyu49]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-p8jjjcyu49]  a:hover, .top-row[b-p8jjjcyu49]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-p8jjjcyu49]  a:first-child {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            overflow: visible;
            text-overflow: ellipsis;
        }

@media (prefers-color-scheme: dark) {
    .top-row[b-p8jjjcyu49] {
        background-color: #1E2A38;
        border-bottom-color: #3A4655;
        color: white;
    }
}

@media (max-width: 640.98px) {
    .top-row[b-p8jjjcyu49] {
        justify-content: space-between;
    }

        .top-row[b-p8jjjcyu49]  a, .top-row[b-p8jjjcyu49]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-p8jjjcyu49] {
        flex-direction: row;
    }

    .sidebar[b-p8jjjcyu49] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-p8jjjcyu49] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-p8jjjcyu49]  a:first-child {
            flex: 1;
            justify-content: flex-end;
            text-align: right;
            width: auto;
        }

    .top-row[b-p8jjjcyu49], article[b-p8jjjcyu49] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-iwgzf595dm] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-iwgzf595dm] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Navigation/AnonTopNav.razor.rz.scp.css */
@media (max-width: 767.98px) {
    .navbar-nav[b-ydg7gfw8hc] {
        width: 100%;
        padding-left: 0;
    }

    .nav-item[b-ydg7gfw8hc] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        padding: 0;
    }

    .nav-item:last-child[b-ydg7gfw8hc] {
        border-bottom: none;
    }

    .nav-item[b-ydg7gfw8hc]  .nav-link {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        padding-left: 0.5rem !important; /* Keep some left padding */
        width: 100%;
        border-radius: 0; /* Remove border radius if any */
    }
}
/* /Components/Navigation/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-lih8eiuou2] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:checked[b-lih8eiuou2] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-lih8eiuou2] {
    min-height: 3.5rem;
}

.navbar-brand[b-lih8eiuou2] {
    font-size: 1.1rem;
}

.bi-check-circle-fill[b-lih8eiuou2] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0m-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
}

.nav-item[b-lih8eiuou2] {
    /* padding left: 1em, right: 1em, bottom: 1em, top: 0 */
    padding: 0.5rem 1rem;
}

    .nav-item[b-lih8eiuou2]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-lih8eiuou2]  a.active {
            background-color: rgba(255,255,255,0.37);
            color: white;
        }

        .nav-item[b-lih8eiuou2]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

.nav-scrollable[b-lih8eiuou2] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-lih8eiuou2] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-lih8eiuou2] {
        display: none;
    }

    .nav-scrollable[b-lih8eiuou2] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.text-brand-orange[b-qainn1r93k] {
    color: #FF7F27 !important;
}

.text-brand-blue[b-qainn1r93k] {
    color: #546EFA !important;
}

[b-qainn1r93k] .btn-cta {
    background-color: #FF7F27 !important;
    border-color: #FF7F27 !important;
    color: white !important;
}

[b-qainn1r93k] .btn-cta:hover {
    background-color: #e56b1f !important;
    border-color: #e56b1f !important;
}
/* /Components/Pages/HowItWorks.razor.rz.scp.css */
/* Hero Section */
.text-brand-orange[b-4f19xof1k1] {
    color: var(--honest-orange);
}

.badge-pill[b-4f19xof1k1] {
    padding: 0.5em 1em;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-fast[b-4f19xof1k1] {
    background-color: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.badge-anonymous[b-4f19xof1k1] {
    background-color: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.badge-secure[b-4f19xof1k1] {
    background-color: rgba(156, 163, 175, 0.2);
    color: #d1d5db;
}

/* Steps Section */
.step-icon[b-4f19xof1k1] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-item[b-4f19xof1k1] {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: transform 0.2s ease;
}

.step-item:hover[b-4f19xof1k1] {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Feature List */
.feature-list-item[b-4f19xof1k1] {
    margin-bottom: 1.5rem;
}

.feature-title[b-4f19xof1k1] {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Cards */
.info-card[b-4f19xof1k1] {
    background-color: rgba(13, 24, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    height: 100%;
}

.card-header-text[b-4f19xof1k1] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

/* Typography */
h1[b-4f19xof1k1] {
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2[b-4f19xof1k1] {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.lead-text[b-4f19xof1k1] {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
}
/* /Components/Pages/Pricing.razor.rz.scp.css */
.pricing-grid[b-5y7xpnkoc5] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.pricing-signup-grid[b-5y7xpnkoc5] {
    display: grid;
    grid-template-columns: 1fr 4fr;
}

.pricing-column[b-5y7xpnkoc5] {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
}


/* Mobile screens */
@media (max-width: 992px) {
    .pricing-grid[b-5y7xpnkoc5] {
        grid-template-columns: 1fr;
    }

    .pricing-signup-grid[b-5y7xpnkoc5] {
        grid-template-columns: 1fr;
    }
}
