/* _content/PawsomeCare.App.Library/Components/Atoms/Table/Th.razor.rz.scp.css */
/* Unsorted sort icon strengthens on hover/focus (no group-hover in the precompiled Tailwind bundle). */
.pwc-sort-icon[b-zxkc32jeec] {
    opacity: 0.6;
    transition: opacity 150ms ease-in-out;
}

.pwc-sort-button:hover .pwc-sort-icon[b-zxkc32jeec],
.pwc-sort-button:focus-visible .pwc-sort-icon[b-zxkc32jeec] {
    opacity: 1;
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Form/SelectableOptionList.razor.rz.scp.css */
/* Bootstrap and the template stylesheet both style bare radios, and Tailwind's compiled sheet
   carries no appearance utilities, so the control is drawn here. */
.pwc-option-radio[b-xnxqmnimf1] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    flex: none;
    display: grid;
    place-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db; /* gray-300 */
    border-radius: 9999px;
    background-color: #fff;
    cursor: pointer;
}

.pwc-option-radio[b-xnxqmnimf1]::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #fff;
    transform: scale(0);
}

.pwc-option-radio:checked[b-xnxqmnimf1] {
    border-color: #9333ea; /* purple-600 */
    background-color: #9333ea;
}

.pwc-option-radio:checked[b-xnxqmnimf1]::before {
    transform: scale(1);
}

/* site.css kills the outline on every focused input, so the keyboard ring goes on the row the
   radio sits in, which is a label and therefore out of that rule's reach. Ringing the whole row
   also reads better than ringing a 20px dot. */
.pwc-option:has(.pwc-option-radio:focus-visible)[b-xnxqmnimf1] {
    outline: 2px solid #a855f7; /* purple-500 */
    outline-offset: 2px;
}

/* The selected row is a tinted card rather than a filled one, so it does not compete with the
   calendar header or the submit button, both of which are solid purple. */
.pwc-option:has(.pwc-option-radio:checked)[b-xnxqmnimf1] {
    border-color: #a855f7; /* purple-500 */
    background-color: #faf5ff; /* purple-50 */
}

.pwc-option:has(.pwc-option-radio:checked) .pwc-option-icon[b-xnxqmnimf1] {
    background-color: #f3e8ff; /* purple-100 */
    color: #6b21a8; /* purple-800 */
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Media/ImageLightbox.razor.rz.scp.css */
.image-lightbox-backdrop[b-bk9g7ubi5f] {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    background-color: rgba(75, 85, 99, 0.92);
    backdrop-filter: blur(6px);
    outline: none;
}

.image-lightbox-header[b-bk9g7ubi5f] {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

@media (min-width: 640px) {
    .image-lightbox-header[b-bk9g7ubi5f] {
        padding: 0.75rem 1.5rem;
    }
}

.image-lightbox-stage[b-bk9g7ubi5f] {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 0;
    margin: 0 1rem 1rem;
    border-radius: 1rem;
    background-color: rgba(107, 114, 128, 0.35);
    padding: 1rem;
}

@media (min-width: 640px) {
    .image-lightbox-stage[b-bk9g7ubi5f] {
        margin: 0 2rem 1rem;
        padding: 1.5rem 3rem;
    }
}

.image-lightbox-image[b-bk9g7ubi5f] {
    display: block;
    max-height: calc(100dvh - 11rem);
    max-width: 100%;
    object-fit: contain;
}

.image-lightbox-caption[b-bk9g7ubi5f] {
    flex-shrink: 0;
    padding: 0 1rem 1.25rem;
    text-align: center;
    font-size: 0.875rem;
    color: #f3f4f6;
}

@media (min-width: 640px) {
    .image-lightbox-caption[b-bk9g7ubi5f] {
        font-size: 1rem;
    }
}

[b-bk9g7ubi5f] .image-lightbox-nav-btn {
    pointer-events: auto;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 4rem !important;
    height: 4rem !important;
    min-width: 4rem !important;
    padding: 0 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 9999px !important;
    background-color: #f3f4f6 !important;
    color: #1f2937 !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
}

[b-bk9g7ubi5f] .image-lightbox-nav-btn:hover:not(:disabled) {
    background-color: #e5e7eb !important;
}

[b-bk9g7ubi5f] .image-lightbox-nav-btn:disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
}

[b-bk9g7ubi5f] .image-lightbox-nav-btn i {
    font-size: 1.35rem;
}

.image-lightbox-nav-left[b-bk9g7ubi5f],
.image-lightbox-nav-right[b-bk9g7ubi5f] {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

.image-lightbox-nav-left[b-bk9g7ubi5f] {
    left: 0.5rem;
}

.image-lightbox-nav-right[b-bk9g7ubi5f] {
    right: 0.5rem;
}

@media (min-width: 640px) {
    .image-lightbox-nav-left[b-bk9g7ubi5f] {
        left: 1rem;
    }

    .image-lightbox-nav-right[b-bk9g7ubi5f] {
        right: 1rem;
    }
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Media/MediaCarousel.razor.rz.scp.css */
.media-carousel-shell[b-lq7e9yqbvr] {
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    background-color: #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.media-carousel-viewport[b-lq7e9yqbvr] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.media-carousel-image[b-lq7e9yqbvr] {
    display: block;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
}

.media-carousel-controls[b-lq7e9yqbvr] {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.75rem;
}

.media-carousel-counter[b-lq7e9yqbvr] {
    pointer-events: none;
    position: absolute;
    top: 0.75rem;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    border-radius: 9999px;
    background-color: rgba(55, 65, 81, 0.82);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.media-carousel-dots[b-lq7e9yqbvr] {
    pointer-events: none;
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    z-index: 10;
    display: flex;
    transform: translateX(-50%);
    gap: 0.375rem;
}

.media-carousel-dot[b-lq7e9yqbvr] {
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(75, 85, 99, 0.65);
}

.media-carousel-dot-active[b-lq7e9yqbvr] {
    width: 1.25rem;
    background-color: #374151;
}

.media-carousel-expand-wrap[b-lq7e9yqbvr] {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 20;
}

[b-lq7e9yqbvr] .media-carousel-nav-btn {
    pointer-events: auto;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    min-width: 3.5rem !important;
    padding: 0 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 9999px !important;
    background-color: #f3f4f6 !important;
    color: #1f2937 !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}

[b-lq7e9yqbvr] .media-carousel-nav-btn:hover:not(:disabled) {
    background-color: #e5e7eb !important;
}

[b-lq7e9yqbvr] .media-carousel-nav-btn:disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
}

[b-lq7e9yqbvr] .media-carousel-nav-btn i {
    font-size: 1.25rem;
}

[b-lq7e9yqbvr] .media-carousel-expand-btn {
    pointer-events: auto;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.75rem !important;
    height: 2.75rem !important;
    min-width: 2.75rem !important;
    padding: 0 !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 9999px !important;
    background-color: #f3f4f6 !important;
    color: #1f2937 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
}

[b-lq7e9yqbvr] .media-carousel-expand-btn:hover:not(:disabled) {
    background-color: #e5e7eb !important;
}

[b-lq7e9yqbvr] .media-carousel-expand-btn i {
    font-size: 0.95rem;
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Payment/PricingBreakdown.razor.rz.scp.css */
/* One shared inset keeps prices, explanatory text, and the action aligned,
   without depending on conflicting Bootstrap/Tailwind spacing utilities. */
.booking-pricing-content[b-qaszfetjx6] {
    padding: 1.25rem;
}

.booking-pricing-footer[b-qaszfetjx6] {
    margin-top: 1rem;
}

.booking-pricing-footer[b-qaszfetjx6]  .booking-payment-note {
    margin: 0 0 1rem;
    line-height: 1.5;
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Table/PageSizeSelector.razor.rz.scp.css */
.pwc-page-size-label[b-neh61bsa3e] {
    white-space: nowrap;
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Table/TableColumnChooser.razor.rz.scp.css */
.pwc-table-columns-panel[b-wq3xdvp57f] {
    max-height: 20rem;
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Table/TableFiltersPanel.razor.rz.scp.css */
/* Filter content can span the whole grid row with class "pwc-filters-full-row". */
.pwc-table-filters-grid[b-lgztjjnbfp]  .pwc-filters-full-row {
    grid-column: 1 / -1;
}

@media (min-width: 640px) {
    .pwc-table-filters-actions[b-lgztjjnbfp] {
        justify-content: flex-end;
    }
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Table/TableFooter.razor.rz.scp.css */
@media (min-width: 640px) {
    .pwc-table-footer-meta[b-ztu6aplmab] {
        column-gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .pwc-table-footer[b-ztu6aplmab] {
        align-items: center;
    }
}
/* _content/PawsomeCare.App.Library/Components/Molecules/Table/TableSearchBox.razor.rz.scp.css */
/* Vertically centre the clear button on the 3rem input, below the field label. */
.pwc-table-search[b-p7s02gcv9o]  .pwc-table-search-clear {
    bottom: 0.5rem;
}
/* _content/PawsomeCare.App.Library/Components/Organisms/GenericModal.razor.rz.scp.css */
.pwc-modal-panel[b-79ivepx25t] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pwc-modal-scroll[b-79ivepx25t] {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.pwc-modal-footer[b-79ivepx25t] {
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .pwc-modal-backdrop[b-79ivepx25t] {
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
    }

    .pwc-modal-panel[b-79ivepx25t] {
        max-height: calc(100dvh - 2rem);
        flex: 0 0 auto;
        width: 100%;
        margin: auto 0;
    }
}

@media (min-width: 768px) {
    .pwc-modal-backdrop[b-79ivepx25t] {
        align-items: center;
        justify-content: center;
        overflow-y: visible;
        padding: 0;
    }
}
/* _content/PawsomeCare.App.Library/Components/Organisms/GenericTable.razor.rz.scp.css */
/* Styles for layout utilities that are not part of the precompiled Tailwind bundle. */
@media (min-width: 1024px) {
    .pwc-table-toolbar-actions--end[b-1hrodtq6xi] {
        justify-content: flex-end;
    }
}

.pwc-table-sticky-scroll[b-1hrodtq6xi] {
    max-height: 70vh;
}
/* _content/PawsomeCare.App.Library/Components/Organisms/MaintenancePage.razor.rz.scp.css */
.maintenance-page[b-i8538t60w2] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1.25rem;
    background: linear-gradient(135deg, #faf5ff 0%, #eef2ff 45%, #fdf2f8 100%);
}

.maintenance-page__bg-shape[b-i8538t60w2] {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.35;
    filter: blur(2px);
}

.maintenance-page__bg-shape--yellow[b-i8538t60w2] {
    width: 18rem;
    height: 18rem;
    top: -4rem;
    left: -3rem;
    background-color: #ffda47;
    animation: maintenance-float-b-i8538t60w2 8s ease-in-out infinite;
}

.maintenance-page__bg-shape--pink[b-i8538t60w2] {
    width: 14rem;
    height: 14rem;
    bottom: -3rem;
    right: -2rem;
    background-color: #ff47a2;
    animation: maintenance-float-b-i8538t60w2 10s ease-in-out infinite reverse;
}

.maintenance-page__bg-shape--purple[b-i8538t60w2] {
    width: 10rem;
    height: 10rem;
    top: 35%;
    right: 12%;
    background-color: #7c58d3;
    animation: maintenance-float-b-i8538t60w2 12s ease-in-out infinite;
}

.maintenance-page__paw[b-i8538t60w2] {
    position: absolute;
    color: #7c58d3;
    opacity: 0.12;
    font-size: 3.5rem;
    pointer-events: none;
}

.maintenance-page__paw--1[b-i8538t60w2] {
    top: 18%;
    left: 10%;
    animation: maintenance-drift-b-i8538t60w2 14s ease-in-out infinite;
}

.maintenance-page__paw--2[b-i8538t60w2] {
    bottom: 22%;
    right: 14%;
    font-size: 2.75rem;
    animation: maintenance-drift-b-i8538t60w2 11s ease-in-out infinite reverse;
}

.maintenance-page__paw--3[b-i8538t60w2] {
    top: 12%;
    right: 28%;
    font-size: 2rem;
    animation: maintenance-drift-b-i8538t60w2 9s ease-in-out infinite;
}

.maintenance-page__content[b-i8538t60w2] {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 40rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #ede9fe;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(124, 88, 211, 0.18);
    padding: 2.5rem 2rem;
}

.maintenance-page__logo-wrap[b-i8538t60w2] {
    margin-bottom: 1.5rem;
}

.maintenance-page__logo[b-i8538t60w2] {
    height: 3rem;
    width: auto;
    margin: 0 auto;
}

.maintenance-page__badge[b-i8538t60w2] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background-color: #f5f3ff;
    color: #6d28d9;
    font-size: 0.875rem;
    font-weight: 600;
}

.maintenance-page__badge-dot[b-i8538t60w2] {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    background-color: #7c58d3;
    animation: maintenance-pulse-b-i8538t60w2 1.6s ease-in-out infinite;
}

.maintenance-page__title[b-i8538t60w2] {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #1f2937;
    letter-spacing: -0.02em;
}

.maintenance-page__subtitle[b-i8538t60w2] {
    margin: 0 auto 1.75rem;
    max-width: 32rem;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.65;
}

.maintenance-page__features[b-i8538t60w2] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.maintenance-page__feature[b-i8538t60w2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background-color: #faf5ff;
    color: #374151;
    font-weight: 500;
    text-align: left;
}

.maintenance-page__feature-icon[b-i8538t60w2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #7c58d3, #6366f1);
    color: #ffffff;
    flex-shrink: 0;
}

.maintenance-page__loader[b-i8538t60w2] {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.maintenance-page__loader-dot[b-i8538t60w2] {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 9999px;
    background-color: #7c58d3;
    animation: maintenance-bounce-b-i8538t60w2 1.2s ease-in-out infinite;
}

.maintenance-page__loader-dot:nth-child(2)[b-i8538t60w2] {
    animation-delay: 0.15s;
}

.maintenance-page__loader-dot:nth-child(3)[b-i8538t60w2] {
    animation-delay: 0.3s;
}

.maintenance-page__footer[b-i8538t60w2] {
    margin: 0;
    color: #6b7280;
    font-size: 0.95rem;
}

@keyframes maintenance-float-b-i8538t60w2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(1.25rem);
    }
}

@keyframes maintenance-drift-b-i8538t60w2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(0.75rem, -0.75rem) rotate(8deg);
    }
}

@keyframes maintenance-pulse-b-i8538t60w2 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.85);
    }
}

@keyframes maintenance-bounce-b-i8538t60w2 {
    0%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }

    40% {
        transform: translateY(-0.45rem);
        opacity: 1;
    }
}

@media (min-width: 640px) {
    .maintenance-page__content[b-i8538t60w2] {
        padding: 3rem 2.5rem;
    }
}
/* _content/PawsomeCare.App.Library/Components/Organisms/ReconnectStatusModal.razor.rz.scp.css */
#components-reconnect-modal[b-xt5wic6s31] {
    display: none !important;
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Homepage/LandingCtaBanner.razor.rz.scp.css */
.landing-cta[b-ax1h0grlnx] {
    background: #fff;
    padding: 0 1.25rem 3.5rem;
}

@media (min-width: 768px) {
    .landing-cta[b-ax1h0grlnx] {
        padding: 0 2rem 4rem;
    }
}

.landing-cta__shell[b-ax1h0grlnx] {
    max-width: 80rem;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid #ede9fe;
    background: linear-gradient(90deg, #faf5ff 0%, #eef2ff 50%, #faf5ff 100%);
}

.landing-cta__grid[b-ax1h0grlnx] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
    .landing-cta__grid[b-ax1h0grlnx] {
        grid-template-columns: auto 1fr auto;
        padding: 2.5rem 2.5rem;
    }
}

.landing-cta__image-wrap[b-ax1h0grlnx] {
    display: none;
    justify-content: center;
}

@media (min-width: 768px) {
    .landing-cta__image-wrap[b-ax1h0grlnx] {
        display: flex;
    }
}

.landing-cta__image[b-ax1h0grlnx] {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.landing-cta__title[b-ax1h0grlnx] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
}

.landing-cta__subtitle[b-ax1h0grlnx] {
    margin: 0.5rem 0 0;
    color: #4b5563;
}

.landing-cta__button[b-ax1h0grlnx] {
    margin-top: 1.25rem;
    border-radius: 0.75rem !important;
    background: #7e22ce !important;
    padding: 0.875rem 2rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(126, 34, 206, 0.25) !important;
}

.landing-cta__social[b-ax1h0grlnx] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .landing-cta__social[b-ax1h0grlnx] {
        align-items: flex-end;
    }
}

.landing-cta__avatars[b-ax1h0grlnx] {
    display: flex;
}

.landing-cta__avatars > div[b-ax1h0grlnx] {
    width: 2.5rem;
    height: 2.5rem;
    margin-left: -0.5rem;
    border-radius: 9999px;
    border: 2px solid #fff;
    background: #ddd6fe;
    color: #5b21b6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-cta__avatars > div:first-child[b-ax1h0grlnx] {
    margin-left: 0;
}

.landing-cta__stars[b-ax1h0grlnx] {
    color: #fbbf24;
    font-size: 0.875rem;
}

.landing-cta__proof[b-ax1h0grlnx] {
    max-width: 220px;
    text-align: center;
    font-size: 0.75rem;
    color: #4b5563;
}

@media (min-width: 768px) {
    .landing-cta__proof[b-ax1h0grlnx] {
        text-align: right;
    }
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Homepage/LandingFeatureCards.razor.rz.scp.css */
.landing-features[b-8ln7up2gow] {
    background: #f9fafb;
    padding: 3rem 1.25rem;
}

@media (min-width: 768px) {
    .landing-features[b-8ln7up2gow] {
        padding: 3.5rem 2rem;
    }
}

.landing-features__grid[b-8ln7up2gow] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .landing-features__grid[b-8ln7up2gow] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .landing-features__grid[b-8ln7up2gow] {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.landing-feature-card[b-8ln7up2gow] {
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.landing-feature-card__icon[b-8ln7up2gow] {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    background: #f5f3ff;
    color: #7e22ce;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.landing-feature-card__title[b-8ln7up2gow] {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.landing-feature-card__body[b-8ln7up2gow] {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #4b5563;
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Homepage/LandingFooter.razor.rz.scp.css */
.landing-footer[b-7am05e7mxw] {
    border-top: 1px solid #f3f4f6;
    background: #fff;
    padding: 2rem 1.25rem;
}

@media (min-width: 768px) {
    .landing-footer[b-7am05e7mxw] {
        padding: 2rem 2rem;
    }
}

.landing-footer__inner[b-7am05e7mxw] {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 640px) {
    .landing-footer__inner[b-7am05e7mxw] {
        flex-direction: row;
    }
}

.landing-footer__links[b-7am05e7mxw] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.landing-footer__platform[b-7am05e7mxw] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.landing-footer__email[b-7am05e7mxw] {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.15s;
}

.landing-footer__email:hover[b-7am05e7mxw] {
    color: #7e22ce;
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Homepage/LandingHeroSearch.razor.rz.scp.css */
.landing-search[b-q8rx7c9n7f] {
    border-radius: 1rem;
    border: 1px solid #ede9fe;
    background: #fff;
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.12);
    overflow: visible;
}

.landing-search__row[b-q8rx7c9n7f] {
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .landing-search__row[b-q8rx7c9n7f] {
        flex-direction: row;
        align-items: stretch;
    }
}

.landing-search__field[b-q8rx7c9n7f] {
    flex: 1;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f3f4f6;
}

@media (min-width: 992px) {
    .landing-search__field[b-q8rx7c9n7f] {
        border-bottom: 0;
        border-right: 1px solid #f3f4f6;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}

.landing-search__label[b-q8rx7c9n7f] {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
}

.landing-search__action[b-q8rx7c9n7f] {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
}

.landing-search__button[b-q8rx7c9n7f] {
    width: 100%;
    min-width: 140px;
    border-radius: 0.75rem !important;
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    background: #7e22ce !important;
}

.landing-search__button:hover[b-q8rx7c9n7f] {
    background: #6b21a8 !important;
}

@media (max-width: 767.98px) {
    .landing-search__field[b-q8rx7c9n7f] {
        padding: 0.7rem 1rem;
    }

    .landing-search__label[b-q8rx7c9n7f] {
        margin-bottom: 0.25rem;
    }

    .landing-search__action[b-q8rx7c9n7f] {
        padding: 0.75rem 1rem;
    }

    .landing-search__button[b-q8rx7c9n7f] {
        padding: 0.7rem 1.25rem !important;
    }
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Homepage/LandingPreviewSitterCard.razor.rz.scp.css */
.landing-sitter-card[b-rwqcj44r0s] {
    position: relative;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    background: #fff;
    padding: 1rem;
}

.landing-sitter-card__heart[b-rwqcj44r0s] {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #d8b4fe;
}

.landing-sitter-card__body[b-rwqcj44r0s] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.landing-sitter-card__avatar-wrap[b-rwqcj44r0s] {
    width: 4.5rem;
    height: 4.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 2px solid #e9d5ff;
}

.landing-sitter-card__avatar[b-rwqcj44r0s] {
    width: 100%;
    height: 100%;
}

.landing-sitter-card__name-row[b-rwqcj44r0s] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.landing-sitter-card__name[b-rwqcj44r0s] {
    font-weight: 600;
    color: #111827;
}

.landing-sitter-card__verified[b-rwqcj44r0s] {
    color: #22c55e;
    font-size: 0.875rem;
}

.landing-sitter-card__rating[b-rwqcj44r0s] {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.landing-sitter-card__rating-value[b-rwqcj44r0s] {
    font-weight: 500;
    color: #f59e0b;
}

.landing-sitter-card__rating-star[b-rwqcj44r0s] {
    color: #fbbf24;
    font-size: 0.75rem;
}

.landing-sitter-card__reviews[b-rwqcj44r0s] {
    color: #9ca3af;
    font-size: 0.75rem;
}

.landing-sitter-card__distance[b-rwqcj44r0s] {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.landing-sitter-card__badge[b-rwqcj44r0s] {
    margin-top: 0.5rem;
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Layout/AdminMobileNavDrawer.razor.rz.scp.css */
.admin-mobile-nav-backdrop[b-0i9w6khdiz] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1040;
}

.admin-mobile-nav-drawer[b-0i9w6khdiz] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(280px, 85vw);
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
}

.admin-mobile-nav-drawer.open[b-0i9w6khdiz] {
    transform: translateX(0);
}

.admin-mobile-nav-drawer-inner[b-0i9w6khdiz] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 12px;
    padding-bottom: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.admin-mobile-nav-drawer-header[b-0i9w6khdiz] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
    min-height: 48px;
}

.admin-mobile-nav-drawer-logo[b-0i9w6khdiz] {
    font-size: 22px;
    color: #a78bfa;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.admin-mobile-nav-drawer-title[b-0i9w6khdiz] {
    font-size: 16px;
    font-weight: 700;
    color: #e0e7ff;
    letter-spacing: 0.5px;
    flex: 1;
}

[b-0i9w6khdiz] .admin-mobile-nav-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 6px;
    color: rgba(224, 231, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
}

[b-0i9w6khdiz] .admin-mobile-nav-drawer-close:hover {
    color: #e0e7ff;
    background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 769px) {
    .admin-mobile-nav-backdrop[b-0i9w6khdiz],
    .admin-mobile-nav-drawer[b-0i9w6khdiz] {
        display: none;
    }
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Layout/AdminNavMenuContent.razor.rz.scp.css */
.admin-sidebar-section[b-58egc643pj] {
    padding: 8px 0 4px;
}

.admin-sidebar-section-label[b-58egc643pj] {
    display: block;
    padding: 0 16px 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(167, 139, 250, 0.6);
    white-space: nowrap;
}

.admin-sidebar-link[b-58egc643pj] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 16px;
    color: rgba(224, 231, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.admin-sidebar-link:hover[b-58egc643pj] {
    color: #e0e7ff;
    background-color: rgba(255, 255, 255, 0.06);
}

.admin-sidebar-link.active[b-58egc643pj] {
    color: #fff;
    background-color: rgba(139, 92, 246, 0.2);
    border-left-color: #a78bfa;
}

.admin-sidebar-link-icon[b-58egc643pj] {
    font-size: 16px;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.admin-sidebar-link.active .admin-sidebar-link-icon[b-58egc643pj] {
    color: #a78bfa;
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Layout/AdminSidebarMenu.razor.rz.scp.css */
.admin-sidebar[b-sjddxyf7cx] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    z-index: 1040;
    overflow: hidden;
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.admin-sidebar.expanded[b-sjddxyf7cx] {
    width: 252px;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
}

.admin-sidebar-inner[b-sjddxyf7cx] {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 12px;
    padding-bottom: 16px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

/* Collapsed rail: hide the scrollbar so it can't steal width and push icons off-centre. */
.admin-sidebar:not(.expanded) .admin-sidebar-inner[b-sjddxyf7cx] {
    scrollbar-width: none;
}

.admin-sidebar:not(.expanded) .admin-sidebar-inner[b-sjddxyf7cx]::-webkit-scrollbar {
    display: none;
}

.admin-sidebar-header[b-sjddxyf7cx] {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    /* 19px = link padding (16px) + active border (3px), so the logo lines up with link icons */
    padding: 10px 16px 18px 19px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
    min-height: 48px;
    white-space: nowrap;
}

.admin-sidebar-logo[b-sjddxyf7cx] {
    font-size: 22px;
    color: #a78bfa;
    min-width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.admin-sidebar-title[b-sjddxyf7cx] {
    font-size: 16px;
    font-weight: 700;
    color: #e0e7ff;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: opacity 0.18s ease;
    flex: 1;
}

.admin-sidebar.expanded .admin-sidebar-title[b-sjddxyf7cx] {
    opacity: 1;
}

.admin-sidebar-toggle-wrapper[b-sjddxyf7cx] {
    flex-shrink: 0;
}

[b-sjddxyf7cx] .admin-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 6px;
    color: rgba(224, 231, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    transition: color 0.15s ease, background-color 0.15s ease;
    cursor: pointer;
}

[b-sjddxyf7cx] .admin-sidebar-toggle:hover {
    color: #e0e7ff;
    background: rgba(255, 255, 255, 0.12);
}

/* Collapsed: stack logo and toggle in a 28px column centred on the link icons (19px + 14px). */
.admin-sidebar:not(.expanded) .admin-sidebar-header[b-sjddxyf7cx] {
    flex-direction: column;
    align-items: center;
    padding: 10px 13px 10px 19px;
    gap: 8px;
}

/* `::deep` must follow the scoped element: the nav is this component's root, so a
   leading `::deep .admin-sidebar` never matched and these rules were dead. */
.admin-sidebar[b-sjddxyf7cx]  .admin-sidebar-section-label {
    transition: opacity 0.18s ease;
}

.admin-sidebar:not(.expanded)[b-sjddxyf7cx]  .admin-sidebar-section-label {
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 0;
}

.admin-sidebar[b-sjddxyf7cx]  .admin-sidebar-link-text {
    transition: opacity 0.18s ease;
}

.admin-sidebar:not(.expanded)[b-sjddxyf7cx]  .admin-sidebar-link-text {
    opacity: 0;
}

@media (max-width: 768px) {
    .admin-sidebar[b-sjddxyf7cx] {
        display: none;
    }
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Layout/Header.razor.rz.scp.css */
.guest-header-nav .main_menu_list > li > a[b-z6nv8jegby] {
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 500;
}

.guest-header-nav .main_menu_list > li > a:hover[b-z6nv8jegby] {
    color: #7e22ce;
}

.guest-header-nav[b-z6nv8jegby]  .guest-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.25;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}

.guest-header-nav[b-z6nv8jegby]  .guest-header-btn--login {
    padding: 0.625rem 1rem;
    border: 1px solid #9ca3af;
    border-radius: 0.75rem;
    background: #fff;
    color: #374151;
    font-size: 0.875rem;
}

.guest-header-nav[b-z6nv8jegby]  .guest-header-btn--login:hover {
    border-color: #7c3aed;
    color: #7c3aed;
    background: #fff;
}

.guest-header-nav[b-z6nv8jegby]  .guest-header-btn--sitter {
    padding: 0.625rem 1rem;
    border: none;
    border-radius: 0.75rem;
    background: #7e22ce;
    color: #fff;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.guest-header-nav[b-z6nv8jegby]  .guest-header-btn--sitter:hover {
    background: #6b21a8;
    color: #fff;
}

@media (max-width: 767.98px) {
    .guest-header-nav[b-z6nv8jegby]  .guest-header-btn--login,
    .guest-header-nav[b-z6nv8jegby]  .guest-header-btn--sitter {
        padding: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        font-size: 0.75rem;
    }

    .guest-header-nav[b-z6nv8jegby]  .guest-header-btn--sitter {
        border: 1px solid #c4b5fd;
        background: #faf5ff;
        color: #6b21a8;
        box-shadow: none;
    }

    .guest-header-nav[b-z6nv8jegby]  .guest-header-btn--sitter:hover {
        background: #f3e8ff;
        color: #581c87;
    }
}

@media (min-width: 768px) {
    .guest-header-nav .main_menu[b-z6nv8jegby] {
        flex: 1 1 auto;
        justify-content: center;
    }

    .guest-header-nav .main_menu_inner[b-z6nv8jegby] {
        justify-content: center !important;
    }

    .guest-header-nav .main_menu_list[b-z6nv8jegby] {
        gap: 0.25rem;
    }

    .guest-header-nav .header_btns_group > li[b-z6nv8jegby] {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .header_btns_group > li:not(:last-child)[b-z6nv8jegby] {
        margin-right: 0 !important;
    }

    .header_btns_group > li:not(:first-child)[b-z6nv8jegby] {
        margin-left: 5px !important;
    }

    .main_menu[b-z6nv8jegby] {
        position: static !important;
        left: auto !important;
        right: auto !important;
        z-index: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding-top: 0;
    }

    .main_menu.navbar[b-z6nv8jegby] {
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .main_menu_inner[b-z6nv8jegby] {
        position: fixed !important;
        top: 56px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        background: #fff !important;
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1) !important;
    }

    .main_menu_list[b-z6nv8jegby] {
        padding: 0 15px 12px !important;
        border-top: none !important;
    }

    .main_menu_list > li > a[b-z6nv8jegby] {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .main_menu_list > li:first-child > a[b-z6nv8jegby] {
        padding-top: 12px !important;
    }
}

/* Shift the header past the fixed admin sidebar. Scoped selector outranks the global
   `.header_section { left: 0 }` from assets/css/style.css, which loads after Tailwind. */
@media (min-width: 768px) {
    .header_section.admin-offset[b-z6nv8jegby] {
        left: 60px;
        right: 0;
        transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header_section.admin-offset--expanded[b-z6nv8jegby] {
        left: 252px;
    }
}
/* _content/PawsomeCare.App.Library/Components/StoreFront/Members/MemberProfileActions.razor.rz.scp.css */
/* Two equal columns on a phone, with Book Now across the full width, so labels such as
   "Kërko takim prezantues" wrap inside a button of the same height as its neighbour
   instead of pushing one button taller than the rest. */
.profile-actions[b-mj9glzxm8m] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

/* The minimum height fits a two-line label, so Book Now, alone on its row with one line,
   is as tall as the wrapped buttons below it rather than looking thinner than them. */
.profile-actions[b-mj9glzxm8m]  .profile-actions__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    text-align: center;
    line-height: 1.25;
    border-radius: 0.5rem;
}

/* Outline buttons carry a 1px border; a transparent one keeps Book Now the same height. */
.profile-actions[b-mj9glzxm8m]  .profile-actions__primary {
    grid-column: 1 / -1;
    border: 1px solid transparent;
}

.profile-actions__report[b-mj9glzxm8m] {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.25rem;
    font-size: 0.75rem;
    color: #6b7280;
    background: none;
    border: 0;
    cursor: pointer;
}

.profile-actions__report:hover[b-mj9glzxm8m] {
    color: #dc2626;
    text-decoration: underline;
}

@media (min-width: 768px) {
    /* A row that wraps to a second line when the column is narrow, rather than squeezing. */
    .profile-actions[b-mj9glzxm8m] {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    /* Labels stay on one line here, so the buttons already match without the phone height. */
    .profile-actions[b-mj9glzxm8m]  .profile-actions__button {
        min-height: 0;
        white-space: nowrap;
    }

    .profile-actions__report[b-mj9glzxm8m] {
        margin-left: 0.25rem;
    }
}
/* _content/PawsomeCare.App.Library/Features/Auth/Components/ConnectedAccountsSettings.razor.rz.scp.css */
.login-methods[b-ej2p8ffz1u] {
    overflow: hidden;
    border: 1px solid #e1e5eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.03), 0 8px 24px rgb(15 23 42 / 0.035);
}

.login-methods__header[b-ej2p8ffz1u] {
    padding: 24px 26px 20px;
    border-bottom: 1px solid #edf0f4;
}

.login-methods__title[b-ej2p8ffz1u] {
    margin: 0 0 5px;
    color: #151b2b;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.login-methods__description[b-ej2p8ffz1u] {
    max-width: 680px;
    margin: 0;
    color: #687386;
    font-size: 13px;
    line-height: 1.55;
}

.login-methods__list[b-ej2p8ffz1u] {
    padding: 0 26px;
}

.login-method[b-ej2p8ffz1u] {
    border-bottom: 1px solid #edf0f4;
}

.login-method:last-child[b-ej2p8ffz1u] {
    border-bottom: 0;
}

.login-method__row[b-ej2p8ffz1u] {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) minmax(200px, 260px);
    align-items: center;
    gap: 16px;
    min-height: 108px;
    padding: 21px 0;
}

.login-method__logo[b-ej2p8ffz1u] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #ffffff;
    font-size: 19px;
}

.login-method__logo--google[b-ej2p8ffz1u] {
    border-color: #dce7fb;
    background: #ffffff;
}

.login-method__google-logo[b-ej2p8ffz1u] {
    width: 19px;
    height: 19px;
}

.login-method__logo--apple[b-ej2p8ffz1u] {
    background: #f8fafc;
    color: #111827;
    font-size: 21px;
}

.login-method__logo--password[b-ej2p8ffz1u],
.login-method__logo--default[b-ej2p8ffz1u] {
    border-color: #e9ddff;
    background: #faf7ff;
    color: #7c3aed;
    font-size: 17px;
}

.login-method__content[b-ej2p8ffz1u] {
    min-width: 0;
}

.login-method__heading[b-ej2p8ffz1u] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 5px;
}

.login-method__name[b-ej2p8ffz1u] {
    margin: 0;
    color: #172033;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.login-method__status[b-ej2p8ffz1u] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7a8699;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.login-method__status .fa-circle[b-ej2p8ffz1u] {
    font-size: 6px;
}

.login-method__status--connected[b-ej2p8ffz1u] {
    color: #16834b;
}

.login-method__summary[b-ej2p8ffz1u] {
    max-width: 560px;
    margin: 0;
    color: #687386;
    font-size: 12px;
    line-height: 1.55;
}

.login-method__action[b-ej2p8ffz1u] {
    min-width: 0;
    justify-self: end;
    width: 100%;
}

.login-method__action[b-ej2p8ffz1u]  .social-provider-button,
.change-confirmation__provider-actions[b-ej2p8ffz1u]  .social-provider-button {
    width: 100%;
    max-width: none;
}

.login-method__button[b-ej2p8ffz1u] {
    display: inline-flex;
    min-width: 112px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1px solid #d7dce5;
    border-radius: 8px;
    background: #ffffff;
    color: #3f4a5d;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.login-method__action > .login-method__button[b-ej2p8ffz1u] {
    width: 100%;
}

.login-method__button:hover:not(:disabled)[b-ej2p8ffz1u] {
    border-color: #b7a1ec;
    background: #faf8ff;
    color: #6d28d9;
}

.login-method__button:focus-visible[b-ej2p8ffz1u],
.change-confirmation__cancel-link:focus-visible[b-ej2p8ffz1u] {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

.login-method__button--disconnect:hover:not(:disabled)[b-ej2p8ffz1u] {
    border-color: #f3b9b9;
    background: #fff8f8;
    color: #b42318;
}

.login-method__button--primary[b-ej2p8ffz1u] {
    border-color: #7c3aed;
    background: #7c3aed;
    color: #ffffff;
}

.login-method__button--primary:hover:not(:disabled)[b-ej2p8ffz1u] {
    border-color: #6d28d9;
    background: #6d28d9;
    color: #ffffff;
}

.login-method__button:disabled[b-ej2p8ffz1u],
.change-confirmation__cancel-link:disabled[b-ej2p8ffz1u] {
    cursor: not-allowed;
    opacity: 0.55;
}

.change-confirmation[b-ej2p8ffz1u] {
    margin: -2px 0 22px 60px;
    padding: 18px;
    border: 1px solid #ddd3f5;
    border-radius: 11px;
    background: #fbfaff;
    box-shadow: 0 3px 10px rgb(65 35 120 / 0.035);
}

.change-confirmation__intro[b-ej2p8ffz1u] {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    max-width: 680px;
}

.change-confirmation__icon[b-ej2p8ffz1u] {
    display: inline-flex;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #eee8ff;
    color: #7040ca;
    font-size: 12px;
}

.change-confirmation__title[b-ej2p8ffz1u] {
    margin: 1px 0 3px;
    color: #20283a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.change-confirmation__description[b-ej2p8ffz1u] {
    margin: 0;
    color: #687386;
    font-size: 12px;
    line-height: 1.5;
}

.change-confirmation__form[b-ej2p8ffz1u],
.create-password-form[b-ej2p8ffz1u] {
    max-width: 620px;
    margin: 16px 0 0 41px;
}

.change-confirmation__privacy[b-ej2p8ffz1u] {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 7px 0 0;
    color: #7a8699;
    font-size: 11px;
    line-height: 1.45;
}

.change-confirmation__privacy i[b-ej2p8ffz1u] {
    margin-top: 2px;
    font-size: 9px;
}

.change-confirmation__actions[b-ej2p8ffz1u] {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 15px;
}

.change-confirmation__provider-check[b-ej2p8ffz1u] {
    max-width: 620px;
    margin: 15px 0 0 41px;
}

.change-confirmation__provider-check > p[b-ej2p8ffz1u] {
    margin: 0 0 10px;
    color: #566174;
    font-size: 12px;
    font-weight: 600;
}

.change-confirmation__provider-actions[b-ej2p8ffz1u] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.change-confirmation__cancel-link[b-ej2p8ffz1u] {
    margin-top: 12px;
    padding: 2px 0;
    border: 0;
    background: transparent;
    color: #687386;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #cbd1da;
    text-underline-offset: 3px;
}

.change-confirmation__cancel-link:hover:not(:disabled)[b-ej2p8ffz1u] {
    color: #4c1d95;
    text-decoration-color: currentColor;
}

.create-password-form__fields[b-ej2p8ffz1u] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.login-methods__footer[b-ej2p8ffz1u] {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 26px;
    border-top: 1px solid #edf0f4;
    background: #fafbfc;
    color: #758094;
    font-size: 11px;
    line-height: 1.5;
}

.login-methods__footer i[b-ej2p8ffz1u] {
    margin-top: 2px;
    color: #8b5cf6;
    font-size: 11px;
}

.login-methods__message[b-ej2p8ffz1u] {
    padding: 16px 26px 20px;
    border-top: 1px solid #edf0f4;
}

.login-methods__loading[b-ej2p8ffz1u] {
    padding: 8px 26px;
}

.login-methods__loading-row[b-ej2p8ffz1u] {
    height: 108px;
    border-bottom: 1px solid #edf0f4;
    background: linear-gradient(90deg, transparent, #f6f8fb 45%, #eef2f7 55%, transparent);
    background-size: 220% 100%;
    animation: login-methods-loading-b-ej2p8ffz1u 1.3s ease-in-out infinite;
}

.login-methods__loading-row:last-child[b-ej2p8ffz1u] {
    border-bottom: 0;
}

@keyframes login-methods-loading-b-ej2p8ffz1u {
    from {
        background-position: 180% 0;
    }

    to {
        background-position: -120% 0;
    }
}

@media (max-width: 800px) {
    .login-method__row[b-ej2p8ffz1u] {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .login-method__action[b-ej2p8ffz1u] {
        grid-column: 2;
        justify-self: start;
        width: min(100%, 300px);
    }

    .change-confirmation[b-ej2p8ffz1u] {
        margin-left: 60px;
    }
}

@media (max-width: 560px) {
    .login-methods[b-ej2p8ffz1u] {
        border-radius: 12px;
    }

    .login-methods__header[b-ej2p8ffz1u] {
        padding: 20px 18px 17px;
    }

    .login-methods__title[b-ej2p8ffz1u] {
        font-size: 18px;
    }

    .login-methods__list[b-ej2p8ffz1u],
    .login-methods__loading[b-ej2p8ffz1u] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .login-method__row[b-ej2p8ffz1u] {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 19px 0;
    }

    .login-method__logo[b-ej2p8ffz1u] {
        width: 40px;
        height: 40px;
    }

    .login-method__action[b-ej2p8ffz1u] {
        grid-column: 1 / -1;
        width: 100%;
    }

    .change-confirmation[b-ej2p8ffz1u] {
        margin: -1px 0 18px;
        padding: 15px;
    }

    .change-confirmation__form[b-ej2p8ffz1u],
    .change-confirmation__provider-check[b-ej2p8ffz1u],
    .create-password-form[b-ej2p8ffz1u] {
        margin-left: 0;
    }

    .change-confirmation__provider-actions[b-ej2p8ffz1u],
    .create-password-form__fields[b-ej2p8ffz1u] {
        grid-template-columns: minmax(0, 1fr);
    }

    .change-confirmation__actions[b-ej2p8ffz1u] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .change-confirmation__actions .login-method__button[b-ej2p8ffz1u] {
        width: 100%;
        min-width: 0;
    }

    .login-methods__footer[b-ej2p8ffz1u],
    .login-methods__message[b-ej2p8ffz1u] {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .login-method__button[b-ej2p8ffz1u] {
        transition: none;
    }

    .login-methods__loading-row[b-ej2p8ffz1u] {
        animation: none;
    }
}
/* _content/PawsomeCare.App.Library/Features/Booking/Components/ConfigureServiceForBooking.razor.rz.scp.css */
/* Above md the form is two columns and the calendar column is the taller one, so it sets the
   row's height. The notes field then takes whatever the pet count field leaves, which keeps it
   flush with the bottom of the calendar whatever the month, the service measurement (a one-off
   appointment has no end-time field) or a visible availability warning does to that height. A
   fixed row count cannot track any of that. Rows="3" still sets the height below md, where the
   columns stack and there is no calendar to line up with. */
@media (min-width: 768px) {
    .booking-details-column[b-404oy6ebgl]  .booking-notes-field {
        display: flex;
        flex-direction: column;
        flex: 1 1 0%;
        min-height: 0;
    }

    .booking-details-column[b-404oy6ebgl]  .booking-notes-field textarea {
        flex: 1 1 0%;
        min-height: 0;
    }
}
/* _content/PawsomeCare.App.Library/Layouts/StoreFrontLayout.razor.rz.scp.css */
/* Reserve room for the fixed admin sidebar so main content and footer are never covered. */
@media (min-width: 768px) {
    .admin-shell[b-kjo09yawt3] {
        padding-left: 60px;
        transition: padding-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .admin-shell--expanded[b-kjo09yawt3] {
        padding-left: 252px;
    }
}
