/* /Components/HeroBanner.razor.rz.scp.css */
.hero[b-uf4uymlm7q] {
    width: 100%;
    min-height: 40vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-radius:1em;
}

.hero-title[b-uf4uymlm7q] {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
}

.hero-sub[b-uf4uymlm7q] {
    font-size: 1.25rem;
    color: #e0e0e0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-p0aouj3h6x] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

#blazor-error-ui[b-p0aouj3h6x] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-p0aouj3h6x] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Active nav-link accent */
[b-g1ih9t65w1] .nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
    border-bottom: 2px solid #90caf9;
}

/* Logout button styled as a nav link */
[b-g1ih9t65w1] .nav-link.btn-link {
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border: none;
    background: none;
}

    [b-g1ih9t65w1] .nav-link.btn-link:hover {
        color: #ffffff;
    }

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-hu04ey21ck],
.components-reconnect-repeated-attempt-visible[b-hu04ey21ck],
.components-reconnect-failed-visible[b-hu04ey21ck],
.components-pause-visible[b-hu04ey21ck],
.components-resume-failed-visible[b-hu04ey21ck],
.components-rejoining-animation[b-hu04ey21ck] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-retrying[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-failed[b-hu04ey21ck],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-hu04ey21ck] {
    display: block;
}


#components-reconnect-modal[b-hu04ey21ck] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-hu04ey21ck 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-hu04ey21ck 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-hu04ey21ck 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-hu04ey21ck]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-hu04ey21ck 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-hu04ey21ck {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-hu04ey21ck {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-hu04ey21ck {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-hu04ey21ck] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-hu04ey21ck] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-hu04ey21ck] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-hu04ey21ck] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-hu04ey21ck] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-hu04ey21ck] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-hu04ey21ck] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-hu04ey21ck 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-hu04ey21ck] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-hu04ey21ck {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* /Components/Pages/Wine/WineDetails.razor.rz.scp.css */
h3[b-1ex53o5po2] {
    text-align: center;
    font-size: 32px;
    font-family: 'Crafty Girls', cursive;
}

p[b-1ex53o5po2] {
    text-align: center;
    font-family: 'Crafty Girls', cursive;
}

.review[b-1ex53o5po2] {
    display:flex;
    justify-content: center;
    padding: 1em;
}

.review-text[b-1ex53o5po2] {
    text-align: center;
    font-size: 24px;
    font-family: 'Crafty Girls', cursive;
    width: 60%;
}

.disclaimer[b-1ex53o5po2] {
    margin-top: 1em;
    font-size: x-small;
    font-style: italic;
}
/* /Components/Pages/Wine/WineSearch.razor.rz.scp.css */
.wine-badge[b-zkjkn9hlw2] {
	display: inline-block;
	padding: 0.25em 0.6em;
	font-size: 0.8em;
	font-weight: 600;
	border-radius: 0.35rem;
	letter-spacing: 0.03em;
}

.wine-red[b-zkjkn9hlw2] {
	background-color: #6B1A2A;
	color: #f5dce0;
}

.wine-white[b-zkjkn9hlw2] {
	background-color: #B8952A;
	color: #1a1a1a;
}

.wine-rose[b-zkjkn9hlw2] {
	background-color: #C46A7A;
	color: #fff5f7;
}

.wine-orange[b-zkjkn9hlw2] {
	background-color: #B35C20;
	color: #fff3e8;
}

.wine-sparkling[b-zkjkn9hlw2] {
	background-color: #4A7A6A;
	color: #e8f5f0;
}

.wine-other[b-zkjkn9hlw2] {
	background-color: #4a4a4a;
	color: #ccc;
}
