/* _content/ShortlyV3.BlazorApp/Components/Components/SlidingError.razor.rz.scp.css */
.error-message[b-ispl86110h] {
    position: fixed;
    top: 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-ispl86110h] {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .error-message.hide[b-ispl86110h] {
        transform: translateX(120%);
        opacity: 0;
        pointer-events: none;
    }
/* _content/ShortlyV3.BlazorApp/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ulfk6lrpwk] {
    min-width: 100vw;
    min-height: 100vh;
    background: url("/images/TestBackground.png"), linear-gradient(to bottom, rgb(131, 255, 138, 0.77), rgb(0, 0, 0, 0.30));
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

article[b-ulfk6lrpwk] {
    backdrop-filter: blur(2px);
    background: linear-gradient(to bottom, rgb(0, 0, 0, 0.30), rgb(0, 0, 0, 0.10));
    -webkit-backdrop-filter: blur(2px);
    min-height: 100vh;
}
/* _content/ShortlyV3.BlazorApp/Components/Pages/Index.razor.rz.scp.css */
div[b-4ratzi39if] {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1[b-4ratzi39if] {
    font-size: 42px;
    margin-top: 5rem;
    color: white;
}

h3[b-4ratzi39if] {
    font-size: 22px;
    font-weight: lighter;
    margin-top: .5rem;
    color:white;
}

[b-4ratzi39if] #urlInput{
    width: 40vw;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: .5rem;
    margin-top: 10rem;
    border: 1px solid rgb(191, 191, 191)
}

.primary-btn[b-4ratzi39if] {
    width: 20vw;
    border-radius: 10px;
    border: none;
    padding: 1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    background-color: rgb(72, 168, 14);
    color: rgb(255, 255, 255);
}

    .primary-btn:hover[b-4ratzi39if] {
        background-color: rgb(35,81,7);
    }

a[b-4ratzi39if]{
    text-decoration: underline;
    color: white;
    font-size: 25px;
}

.copy-btn[b-4ratzi39if] {
    background: none;
    border: none;
    color: white;
    padding: 1rem;
}

[b-4ratzi39if] .validation-errors {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

[b-4ratzi39if] .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;
}
