/* ---------- Design tokens: pastel blue (structure/links/status) + orange (primary actions) ---------- */
:root {
    --color-bg: #f2f8fc;
    --color-surface: #ffffff;
    --color-text: #2e3a46;
    --color-text-muted: #7b8ca3;

    /* Orange: primary calls-to-action */
    --color-primary: #ed8c4f;
    --color-primary-hover: #d9722e;
    --color-primary-soft: #fde9d6;

    /* Blue: structure, links, status, decoration */
    --color-accent: #6fa8dc;
    --color-accent-dark: #3f7cb0;
    --color-accent-soft: #e3f0fa;

    --color-danger: #d9706a;
    --color-danger-hover: #c15650;
    --color-danger-soft: #fbe9e8;

    --color-success: #5fa87a;
    --color-success-soft: #e6f4ea;

    --color-border: rgba(111, 168, 220, 0.28);

    --font-heading: "Poppins", system-ui, sans-serif;
    --font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

    --shadow-card: 0 20px 50px rgba(93, 149, 199, 0.16);
    --radius-lg: 28px;
    --radius: 18px;
}

/* ---------- Base ---------- */
html, body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

body {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-text);
    line-height: 1.2;
}

h1 {
    font-size: 2.3rem;
    margin-bottom: 1.25rem;
}

h1:focus {
    outline: none;
}

p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

a, .btn-link {
    color: var(--color-accent-dark);
}

a:hover {
    color: var(--color-primary-hover);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin-bottom: 0.5rem;
}

    .eyebrow::before {
        content: "";
        width: 32px;
        height: 1px;
        background: currentColor;
    }

/* ---------- Buttons ---------- */
.btn {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-text);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: var(--color-primary-hover);
        border-color: var(--color-primary-hover);
        color: #fff;
    }

.btn-secondary {
    color: var(--color-accent-dark);
    background-color: transparent;
    border: 1px solid var(--color-border);
}

    .btn-secondary:hover {
        background-color: var(--color-accent-soft);
        border-color: var(--color-accent-soft);
        color: var(--color-accent-dark);
    }

.btn-danger {
    color: #fff;
    background-color: var(--color-danger);
    border-color: var(--color-danger);
}

    .btn-danger:hover {
        background-color: var(--color-danger-hover);
        border-color: var(--color-danger-hover);
    }

.btn-sm {
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus, .form-select:focus {
    box-shadow: 0 0 0 3px var(--color-accent-soft);
    outline: none;
}

/* ---------- Forms ---------- */
label, .form-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
    display: inline-block;
}

.form-control, .form-select {
    font-family: var(--font-sans);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.6rem 0.85rem;
    background-color: #fff;
    color: var(--color-text);
}

    .form-control:focus, .form-select:focus {
        border-color: var(--color-accent);
    }

.valid.modified:not([type=checkbox]) {
    outline: 1px solid var(--color-success);
}

.invalid {
    outline: 1px solid var(--color-danger);
}

.validation-message {
    color: var(--color-danger);
    font-size: 0.85rem;
}

/* ---------- Cards ---------- */
.card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    background: var(--color-surface);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

/* ---------- Tables ---------- */
.table {
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
}

    .table thead th {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--color-text-muted);
        font-weight: 700;
        border-bottom: 1px solid var(--color-border);
        background-color: var(--color-bg);
    }

    .table td, .table th {
        vertical-align: middle;
        border-color: var(--color-border);
        padding: 0.85rem 0.75rem;
    }

    .table tbody tr:hover {
        background-color: var(--color-accent-soft);
    }

.table-responsive {
    border-radius: var(--radius);
}

    .table-responsive .table {
        margin-bottom: 0;
    }

@media (max-width: 720px) {
    .table-responsive .table {
        white-space: nowrap;
    }
}

/* ---------- Alerts ---------- */
.alert-danger {
    background-color: var(--color-danger-soft);
    border: 1px solid var(--color-danger);
    color: var(--color-danger-hover);
    border-radius: var(--radius);
}

.alert-success {
    background-color: var(--color-success-soft);
    border: 1px solid var(--color-success);
    color: var(--color-success);
    border-radius: var(--radius);
}

/* ---------- Status badges ---------- */
.status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background-color: var(--color-border);
    color: var(--color-text-muted);
}

.status-confirmed {
    background-color: var(--color-accent-soft);
    color: var(--color-accent-dark);
}

.status-checkedin {
    background-color: var(--color-success-soft);
    color: var(--color-success);
}

.status-checkedout {
    background-color: var(--color-border);
    color: var(--color-text-muted);
}

.status-cancelled {
    background-color: var(--color-danger-soft);
    color: var(--color-danger-hover);
}

/* ---------- Definition lists (booking summaries) ---------- */
dl.row dt {
    color: var(--color-text-muted);
    font-weight: 600;
}

dl.row dd {
    color: var(--color-text);
    font-weight: 500;
}

/* ---------- Generic content section ---------- */
.section {
    padding: 3rem 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

    .section-head p {
        max-width: 28rem;
        margin: 0;
    }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
    padding: 3rem 0 1.5rem;
}

    .page-hero p {
        margin-top: 0.75rem;
        max-width: 40rem;
    }

/* ---------- Hero + search panel (Home) ---------- */
.hero {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-top: -2.5rem;
    min-height: 32rem;
    display: flex;
    align-items: center;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-bg) 50%, var(--color-primary-soft) 100%);
}

.hero--photo {
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 40rem;
    padding: 7.5rem clamp(1.5rem, 6vw, 5rem) 4rem;
}

    .hero-content .eyebrow {
        color: var(--color-accent-dark);
    }

.hero h1 {
    color: var(--color-text);
    font-weight: 600;
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    margin: 0.75rem 0 1rem;
}

.hero p {
    max-width: 30rem;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.hero--photo .hero-content .eyebrow {
    color: #fbe3c4;
}

.hero--photo .hero-content h1 {
    color: #ffffff;
}

.hero--photo .hero-content p {
    color: rgba(255, 255, 255, 0.88);
}

.search-panel {
    margin-top: -3.25rem;
    position: relative;
    z-index: 5;
}

.search-card {
    background: var(--color-surface);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-card);
    border-radius: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr 0.7fr auto;
    align-items: end;
    padding: 1.1rem;
    gap: 0.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.search-card__field {
    padding: 0.6rem 0.9rem;
    display: flex;
    flex-direction: column;
}

    .search-card__field:not(:last-of-type) {
        border-right: 1px solid var(--color-border);
    }

    .search-card__field label {
        margin-bottom: 0.45rem;
    }

    .search-card__field input {
        border: none;
        background: transparent;
        outline: none;
        color: var(--color-text);
        font-family: var(--font-sans);
        padding: 0;
    }

.search-card__submit {
    white-space: nowrap;
}

@media (max-width: 720px) {
    .search-card {
        grid-template-columns: 1fr 1fr;
    }

    .search-card__field:not(:last-of-type) {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .search-card__submit {
        grid-column: 1 / -1;
    }
}


/* ---------- Hotel gallery carousel (uniform tiles, auto-sliding right-to-left) ---------- */
.gallery-carousel {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.gallery-carousel__track {
    display: flex;
    width: max-content;
    gap: 1.1rem;
    animation-name: gallery-marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.gallery-carousel:hover .gallery-carousel__track {
    animation-play-state: paused;
}

@keyframes gallery-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gallery-carousel__item {
    position: relative;
    flex: 0 0 14rem;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.gallery-carousel__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-carousel__item:hover .gallery-carousel__photo {
    transform: scale(1.06);
}

.gallery-carousel__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem;
    background: linear-gradient(180deg, transparent, rgba(20, 20, 20, 0.75));
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(0.4rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-carousel__item:hover .gallery-carousel__caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .gallery-carousel__item {
        flex-basis: 10.5rem;
    }
}

/* ---------- Room result cards (hotel-card inspired) ---------- */
.room-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

    .room-card:hover {
        transform: translateY(-6px);
    }

.room-card__media {
    height: 12rem;
    background-size: cover;
    background-position: center;
}

.room-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.room-card__title {
    margin: 0;
}

.room-card__text {
    margin: 0;
    font-size: 0.92rem;
}

.room-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.room-card__footer {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-card__price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
}

    .room-card__price small {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        color: var(--color-text-muted);
    }

/* ---------- Room details page ---------- */
.details-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.9rem;
}

.gallery-main {
    height: 26rem;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.gallery-side {
    display: grid;
    gap: 0.9rem;
}

    .gallery-side div {
        height: 12.5rem;
        border-radius: var(--radius);
        overflow: hidden;
        background-size: cover;
        background-position: center;
    }

.amenities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.amenity {
    background: var(--color-accent-soft);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 0.85rem;
    font-size: 0.9rem;
    text-align: center;
    color: var(--color-accent-dark);
    font-weight: 600;
}

.booking-box {
    padding: 1.6rem;
    position: sticky;
    top: 6.5rem;
    max-width: 26rem;
}

    .booking-box h3 {
        margin-bottom: 0.25rem;
    }

.booking-box__field {
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 0.6rem 0.9rem;
    margin-top: 0.9rem;
    display: flex;
    flex-direction: column;
}

    .booking-box__field label {
        margin-bottom: 0.3rem;
    }

    .booking-box__field input, .booking-box__field select {
        border: none;
        background: transparent;
        outline: none;
        font-family: var(--font-sans);
        color: var(--color-text);
        padding: 0;
    }

.booking-box .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ---------- Checkout form layout ---------- */
.form-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
    align-items: start;
}

.form-card {
    padding: 1.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

    .form-grid .full {
        grid-column: 1 / -1;
    }

@media (max-width: 900px) {
    .form-layout {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .booking-box {
        position: static;
        max-width: none;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 16rem;
    }

    .gallery-side {
        grid-template-columns: 1fr 1fr;
    }

        .gallery-side div {
            height: 8rem;
        }

    .amenities {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---------- Summary lines (checkout / confirmation) ---------- */
.summary-card__media {
    height: 10rem;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    margin-bottom: 1.1rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--color-border);
}

    .summary-line.total {
        font-weight: 700;
        font-size: 1.1rem;
        border-bottom: 0;
    }

/* ---------- My Bookings cards ---------- */
.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.booking-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.booking-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

    .booking-card__header h3 {
        margin: 0;
        font-size: 1.15rem;
    }

.booking-card__room {
    margin: 0 0 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.booking-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}

/* ---------- Confirmation page ---------- */
.confirmation {
    text-align: center;
    padding: 4rem 0;
}

.confirmation-box {
    max-width: 40rem;
    margin: auto;
    padding: 3rem;
}

.confirmation-check {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: var(--color-accent-soft);
    color: var(--color-accent-dark);
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

/* ---------- Reservation comment thread ---------- */
.comment-card {
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.comment-thread {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    min-height: 12rem;
    max-height: 60vh;
    overflow-y: auto;
}

.comment-bubble {
    max-width: 65%;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
}

.comment-bubble--staff {
    align-self: flex-end;
    background: var(--color-accent-soft);
}

.comment-bubble--guest {
    align-self: flex-start;
    background: var(--color-primary-soft);
}

.comment-bubble__meta {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

    .comment-bubble__meta strong {
        color: var(--color-text);
    }

.comment-reply {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 640px) {
    .comment-bubble {
        max-width: 85%;
    }
}

/* ---------- Auth / form cards ---------- */
.auth-page {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.auth-card {
    width: 100%;
    max-width: 26rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 2.25rem;
}

    .auth-card h1 {
        text-align: center;
        margin-bottom: 1.75rem;
        font-size: 1.9rem;
    }

.auth-card__footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.9rem;
}

/* ---------- Modal ---------- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(46, 58, 70, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 100;
}

.modal-dialog {
    width: 100%;
    max-width: 34rem;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .modal-header h2 {
        margin: 0;
    }

.modal-close {
    border: none;
    background: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0 0.25rem;
    text-decoration: none;
    display: inline-block;
}

    .modal-close:hover {
        color: var(--color-text);
    }

/* ---------- Room type photo uploads ---------- */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.image-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.gallery-admin-thumb {
    aspect-ratio: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

    .gallery-admin-thumb img {
        height: 13rem;
        border-radius: 12px 12px 0 0;
    }

.gallery-admin-thumb__caption-form {
    display: flex;
    gap: 0.4rem;
    padding: 0.5rem;
}

    .gallery-admin-thumb__caption-form input {
        flex: 1;
        min-width: 0;
        font-size: 0.82rem;
        padding: 0.4rem 0.6rem;
    }

.gallery-admin-thumb__hero-row {
    padding: 0 0.5rem 0.5rem;
}

    .gallery-admin-thumb__hero-row .btn {
        width: 100%;
    }

    .image-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.image-thumb__remove {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: none;
    background: rgba(46, 58, 70, 0.7);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-thumb__remove:hover {
        background: var(--color-danger);
    }

/* ---------- Blazor framework chrome ---------- */
.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}
