/* _content/ShortlyV3.BlazorApp/Components/Components/Footer.razor.rz.scp.css */
footer[b-qwq2p2za06]{
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 4rem;
    display:flex;
    justify-content:center;
    align-content:center;
    align-items:center;
    justify-items:center;

    z-index: 10;
}

div[b-qwq2p2za06]{
    display:flex;
    justify-content:space-evenly;
    min-width: 30vw;
}

p[b-qwq2p2za06] {
    color: #373737;
}

a[b-qwq2p2za06] {
    color: #373737;
    text-decoration: none;
}

    a:hover[b-qwq2p2za06] {
        color: rgb(148, 148, 148);
    }
/* _content/ShortlyV3.BlazorApp/Components/Components/NavBar.razor.rz.scp.css */
img[b-4vxzc879xz]{
    height: 3rem;
    margin: 2rem;
}

nav[b-4vxzc879xz]{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    margin: 1rem 4rem;
    height: 4rem;
}

.slider-nav[b-4vxzc879xz] {
    justify-self: center;
    display: inline-flex;
    background-color: #242424;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    padding: 0;
    gap: 0;
}

[b-4vxzc879xz] .nav-button {
    padding: 0.75rem 1.25rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    background: transparent;
    border: none;
    margin: .25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    line-height: 1; /* tighter alignment */
}

    [b-4vxzc879xz] .nav-button:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    [b-4vxzc879xz] .nav-button.active {
        background-color: rgba(255, 255, 255, 0.08);
    }

.default-link[b-4vxzc879xz] {
    color: white;
    text-decoration:none;
    font-size: 18px;
    padding: .25rem 0;
}

.right-nav[b-4vxzc879xz]{
    justify-self: end;
}

.right-nav a[b-4vxzc879xz]{
    margin-left: 2rem;
}

.underline-hover[b-4vxzc879xz] {
    position: relative;
    color: white;
    text-decoration: none;
}

    .underline-hover[b-4vxzc879xz]::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: currentColor;
        transition: width 0.3s ease;
    }

    .underline-hover:hover[b-4vxzc879xz]::after {
        width: 100%;
    }
/* _content/ShortlyV3.BlazorApp/Components/Components/SlidingError.razor.rz.scp.css */
.error-message[b-i98qzzo7rr] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 20vw;
    padding: 1rem 1.5rem;
    background-color: #f44336;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 9999;
    pointer-events: none; /* prevents clicks while hidden */
}

    .error-message.show[b-i98qzzo7rr] {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .error-message.hide[b-i98qzzo7rr] {
        transform: translateX(120%);
        opacity: 0;
        pointer-events: none;
    }
/* _content/ShortlyV3.BlazorApp/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-il2bbifuqd] {
    min-height: 100vh;
    background: 
        radial-gradient(transparent, black), 
        #2a2a2a;
    position: relative;
    overflow-x: hidden;
}


article[b-il2bbifuqd] {
    z-index: 1;
    min-height: 100%;
    display: flex;
}

main[b-il2bbifuqd] {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 8rem;
    margin-bottom: 8rem;
}
/* _content/ShortlyV3.BlazorApp/Components/Pages/About.razor.rz.scp.css */
div[b-awv9mft0z6] {
    padding: 2rem;
    background-color: rgb(36, 36, 36);
    border-radius: 20px;
    border: #373737 1px solid;
    min-width: 600px;
    width: 50vw;
    min-height: 100px;
    margin-bottom: 6rem;
}

h1[b-awv9mft0z6] {
    color: white;
    font-size: 46px;
    margin: 1rem;
}

h2[b-awv9mft0z6] {
    color: white;
    font-size: 36px;
    font-weight: lighter;
    margin: 1rem;
    margin-top: 4rem;
}

p[b-awv9mft0z6] {
    margin: 1rem;
    color: white;
    line-height: 36px;
}

ul[b-awv9mft0z6] {
    margin: 1rem;
}

li[b-awv9mft0z6] {
    margin: 2rem;
    color: white;
    line-height: 26px;
}
/* _content/ShortlyV3.BlazorApp/Components/Pages/Index.razor.rz.scp.css */
[b-w8u28glj6i] .validation-errors {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

[b-w8u28glj6i] .validation-message {
    max-width: 20vw;
    padding: 1rem 1.5rem;
    background-color: #f44336;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 9999;
    pointer-events: none; /* prevents clicks while hidden */
    margin-bottom: 1rem;
    list-style: none;
}

h1[b-w8u28glj6i] {
    color: white;
    font-size: 46px;
    text-align: center;
    margin-bottom: .5rem;
}

h2[b-w8u28glj6i] {
    color: white;
    text-align: center;
    font-size: 36px;
    margin-top: 6rem;
    font-weight: lighter;
}

h3[b-w8u28glj6i] {
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: lighter;
    margin-bottom: 4rem;
}

p[b-w8u28glj6i] {
    margin-top: 1rem;
    color: white;
    text-align: center;
}

.pc-outer[b-w8u28glj6i] {
    box-shadow: rgba(0,0,0,0.25) 0px 7px 47px 61px;
    display: flex;
    flex-direction: column;
    width: 50vw;
    background-color: rgb(36, 36, 36);
    border-radius: 20px 20px 0 0;
    border: #373737 1px solid;
    border-bottom: none;
    min-height: 50vh;
    margin-top: 4rem;
}

.pc-nav[b-w8u28glj6i] {
    margin: 14px 14px 0px 14px;
    background-color: rgba(217, 217, 217, 0.3);
    border-radius: 10px 10px 0 0;
    min-height: 2rem;
    position: relative;
}

    .pc-nav[b-w8u28glj6i]::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 12px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: red;
        box-shadow: 28px 0 0 yellow, /* tweede bol */
        56px 0 0 limegreen, /* derde bol */
        0 0 6px 2px rgba(255,0,0,0.4), /* rode gloed */
        28px 0 6px 2px rgba(255,255,0,0.3), /* gele gloed */
        56px 0 6px 2px rgba(0,255,0,0.3); /* groene gloed */
    }

.pc-body[b-w8u28glj6i] {
    border: 1px solid #595959;
    border-bottom: none;
    margin: 0 14px;
    height: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-input[b-w8u28glj6i] {
    display: flex;
    align-items: center;
    background-color: rgba(217, 217, 217, 0.3);
    border-radius: 40px;
    padding: 0 6px 0 16px;
    height: 48px;
    min-width: 30vw;
    max-width: 1000px;
    gap: 10px;
}

.icon[b-w8u28glj6i] {
    color: #ccc;
    font-size: 18px;
    margin-top: -4px;
}

[b-w8u28glj6i] #emailInput {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    outline: none;
    color: white;
}

    [b-w8u28glj6i] #emailInput::placeholder {
        color: #B2B2B2;
    }

[b-w8u28glj6i] #urlInput {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    outline: none;
    color: white;
}

    [b-w8u28glj6i] #urlInput::placeholder {
        color: #B2B2B2;
    }

    [b-w8u28glj6i] #urlInput:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
        -webkit-text-fill-color: #eee !important;
        caret-color: #00e0c6;
        transition: background-color 9999s ease-out, color 9999s ease-out;
    }

        [b-w8u28glj6i] #urlInput:-webkit-autofill:focus {
            -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
        }

a[b-w8u28glj6i] {
    text-decoration: underline;
    color: white;
    font-size: 25px;
    margin-top: 4rem;
}

.copy-wrapper[b-w8u28glj6i]{
    display:flex;
    margin-top: 2rem;
    gap: 1rem;
}

.result-link[b-w8u28glj6i]{
    display: flex;
    align-content:center;
    align-items:center;
    justify-content:center;
    justify-items:center;
    padding: 1rem;
    margin-top:1rem;
}

.result-link a[b-w8u28glj6i]{
    margin-top: 0px;
}

.result-link img[b-w8u28glj6i]{
    width: 2rem;
    margin: 0 1rem;
}
/* _content/ShortlyV3.BlazorApp/Components/Pages/Privacy.razor.rz.scp.css */
div[b-tlx6hz7gsz] {
    padding: 2rem;
    background-color: rgb(36, 36, 36);
    border-radius: 20px;
    border: #373737 1px solid;
    min-width: 600px;
    width: 50vw;
    min-height: 100px;
    margin-bottom: 6rem;
}

h1[b-tlx6hz7gsz] {
    color: white;
    font-size: 46px;
    margin: 1rem;
}

h2[b-tlx6hz7gsz] {
    color: white;
    font-size: 36px;
    font-weight: lighter;
    margin: 1rem;
    margin-top: 4rem;
}

p[b-tlx6hz7gsz] {
    margin: 1rem;
    color: white;
    line-height: 36px;
}

ul[b-tlx6hz7gsz] {
    margin: 1rem;
}

li[b-tlx6hz7gsz] {
    margin: 2rem;
    color: white;
    line-height: 26px;
}
/* _content/ShortlyV3.BlazorApp/Components/Pages/QRCodePage.razor.rz.scp.css */
[b-oah0a7bjl5] .validation-errors {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
}

[b-oah0a7bjl5] .validation-message {
    max-width: 20vw;
    padding: 1rem 1.5rem;
    background-color: #f44336;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: 9999;
    pointer-events: none; /* prevents clicks while hidden */
    margin-bottom: 1rem;
    list-style: none;
}

h1[b-oah0a7bjl5] {
    color: white;
    font-size: 46px;
    text-align: center;
    margin-bottom: .5rem;
}

h2[b-oah0a7bjl5] {
    color: white;
    text-align: center;
    font-size: 36px;
    margin-top: 6rem;
    font-weight: lighter;
}

h3[b-oah0a7bjl5] {
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: lighter;
    margin-bottom: 4rem;
}

p[b-oah0a7bjl5] {
    margin-top: 1rem;
    color: white;
    text-align: center;
}

.pc-outer[b-oah0a7bjl5] {
    box-shadow: rgba(0,0,0,0.25) 0px 7px 47px 61px;
    display: flex;
    flex-direction: column;
    width: 50vw;
    background-color: rgb(36, 36, 36);
    border-radius: 20px 20px 0 0;
    border: #373737 1px solid;
    border-bottom: none;
    min-height: 50vh;
    margin-top: 4rem;
}

.pc-nav[b-oah0a7bjl5] {
    margin: 14px 14px 0px 14px;
    background-color: rgba(217, 217, 217, 0.3);
    border-radius: 10px 10px 0 0;
    min-height: 2rem;
    position: relative;
}

    .pc-nav[b-oah0a7bjl5]::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 12px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: red;
        box-shadow: 28px 0 0 yellow, /* tweede bol */
        56px 0 0 limegreen, /* derde bol */
        0 0 6px 2px rgba(255,0,0,0.4), /* rode gloed */
        28px 0 6px 2px rgba(255,255,0,0.3), /* gele gloed */
        56px 0 6px 2px rgba(0,255,0,0.3); /* groene gloed */
    }

.pc-body[b-oah0a7bjl5] {
    border: 1px solid #595959;
    border-bottom: none;
    margin: 0 14px;
    height: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-input[b-oah0a7bjl5] {
    display: flex;
    align-items: center;
    background-color: rgba(217, 217, 217, 0.3);
    border-radius: 40px;
    padding: 0 6px 0 16px;
    height: 48px;
    min-width: 30vw;
    max-width: 1000px;
    gap: 10px;
}

.icon[b-oah0a7bjl5] {
    color: #ccc;
    font-size: 18px;
    margin-top: -4px;
}

[b-oah0a7bjl5] #emailInput {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    outline: none;
    color: white;
}

    [b-oah0a7bjl5] #emailInput::placeholder {
        color: #B2B2B2;
    }

[b-oah0a7bjl5] #urlInput {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    outline: none;
    color: white;
}

    [b-oah0a7bjl5] #urlInput::placeholder {
        color: #B2B2B2;
    }

    [b-oah0a7bjl5] #urlInput:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
        -webkit-text-fill-color: #eee !important;
        caret-color: #00e0c6;
        transition: background-color 9999s ease-out, color 9999s ease-out;
    }

        [b-oah0a7bjl5] #urlInput:-webkit-autofill:focus {
            -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
        }

a[b-oah0a7bjl5] {
    text-decoration: underline;
    color: white;
    font-size: 25px;
    margin-top: 4rem;
}

.copy-wrapper[b-oah0a7bjl5] {
    display: flex;
    margin-top: 2rem;
    gap: 1rem;
}

.qr-img[b-oah0a7bjl5] {
    max-width: 300px;
    width: 300px;
    margin-top: 2rem;
}
/* _content/ShortlyV3.BlazorApp/Components/Pages/Roadmap.razor.rz.scp.css */
@keyframes fadeInUp-b-rghikcvm48 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page[b-rghikcvm48]{
    position:relative;
    padding-bottom: 5rem;
}

h1[b-rghikcvm48] {
    color: white;
    font-size: 46px;
    text-align: center;
    margin-bottom: .5rem;
}

h3[b-rghikcvm48] {
    color: white;
    font-size: 20px;
    text-align: center;
    font-weight: lighter;
    margin-bottom: 4rem;
}


.roadmap-container[b-rghikcvm48] {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    position: relative;
}

    .roadmap-container[b-rghikcvm48]::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 14px; 
        width: 2px;
        background-color: #00e0c6;
        z-index: 0;
    }

.roadmap-item[b-rghikcvm48] {
    position: relative;
    background: rgba(28, 28, 28, 0.6);
    border-radius: 1rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 0;
    animation: fadeInUp-b-rghikcvm48 0.6s ease forwards;
}

    .roadmap-item[b-rghikcvm48]::before {
        content: '';
        position: absolute;
        left: -1.5rem;
        top: 1.7rem;
        width: 14px;
        height: 14px;
        background-color: #00e0c6;
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(0, 224, 198, 0.6);
        z-index: 2;
    }

    .roadmap-item h4[b-rghikcvm48] {
        margin-top: 0;
        color: #00e0c6;
        font-size: 1.25rem;
    }

    .roadmap-item p[b-rghikcvm48] {
        color: #ddd;
        line-height: 1.6;
        margin-top: 0.5rem;
    }

    .roadmap-item.done[b-rghikcvm48] {
        background: rgba(34, 34, 34, 0.6);
        border: 1px solid rgba(0, 224, 198, 0.2);
        opacity: 0.6;
        position: relative;
    }

        /* Add a checkmark icon on top of the dot */
        .roadmap-item.done[b-rghikcvm48]::before {
            background-color: #00e0c6;
            box-shadow: 0 0 4px rgba(0, 224, 198, 0.5);
            content: '✓';
            color: #111;
            font-size: 10px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Optional: line-through title */
        .roadmap-item.done h4[b-rghikcvm48] {
            color: #888;
            text-decoration: line-through;
        }
