/*@import '/_content/MudBlazor/MudBlazor.min.css'; if required refer starting with absolute path instead of relative path 
absolute path "/_content//MudBlazor/MudBlazor.min.css" 
relative path "_content/MudBlazor/MudBlazor.min.css" */
@import 'css/utilities.css';
@import 'css/conditional-states.css';
@import 'css/components.css';
@import 'css/layout.css';
@import 'css/dialog-components.css';
@import 'css/home-page.css';
@import 'css/town-page.css';
@import 'css/town-header.css';
@import 'css/town-cards.css';
@import 'css/page-towns.css';
@import 'css/page-cardtypes.css';
@import 'css/card-add.css';
@import 'css/card-update.css';
@import 'css/card-detail-panel.css';
@import 'css/card-creation.css';
@import 'css/card-creation-enhanced.css';
@import 'css/card-lifecycle-flow.css';
@import 'css/card-type-icons.css';
@import 'css/media-commands.css';
@import 'css/step-components.css';
@import 'css/google-business-form.css';
@import 'css/google-business-style.css';
@import 'css/business-hours.css';
@import 'css/business-profile-panel.css';
@import 'css/compact-business-profile.css';
@import 'css/social-connections.css';
@import 'css/business-verification.css';
@import 'css/verification-component.css';
@import 'css/verification-request-panel.css';
@import 'css/publishing-confirmation-dialog.css';
@import 'css/subscription-limitations.css';
@import 'css/usage-tracker.css';
@import 'css/modern-card-dialog.css';
@import 'css/theme-system.css';
@import 'css/theme-light.css';
@import 'css/theme-dark.css';
@import 'css/theme-indian.css';

body {
    --body-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI Variable", Arial, sans-serif;
    font-family: var(--body-font);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    margin: 0;
}

/* Startup placeholder styles moved from index.html inline */
.startup-loading {
    display:flex;
    align-items:center;
    justify-content:center;
    height:100vh;
    font-family:sans-serif;
    color:#512BD4;
}
.startup-title { font-size:2rem; margin-bottom:0.5rem; text-align:center; }
.startup-sub { font-size:1rem; opacity:0.7; text-align:center; }

/* ── Unified app footer strip (reconnect / error states) ─────────────────── */
/* commit: fix: unified footer strip replaces broken blazor-error-ui + reconnect overlay */

/* Keep legacy #blazor-error-ui hidden — rendering is taken over by #app-unified-footer */
#blazor-error-ui { display: none !important; }

#app-unified-footer {
    display: none; /* JS toggles this to flex */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2100; /* Above MudBlazor drawer (1100-1300) and appbar (1300) — never hidden behind left nav */
    padding: 8px 16px;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    font-size: 0.85rem;
    font-family: var(--body-font, system-ui, sans-serif);
    align-items: center;
    gap: 10px;
    min-height: 44px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.18);
    transition: background 0.25s ease, padding-left 0.25s ease;
    cursor: default;
}

/* State colour themes */
#app-unified-footer.ufo-reconnecting {
    background: #FFF8E1;
    color: #5D4037;
    border-top: 2px solid #FF9800;
}
#app-unified-footer.ufo-failed {
    background: #FFEBEE;
    color: #B71C1C;
    border-top: 2px solid #F44336;
    cursor: pointer;
}
#app-unified-footer.ufo-error {
    background: #FFF9C4;
    color: #4E342E;
    border-top: 2px solid #F9A825;
}

/* Dark theme overrides */
.theme-dark #app-unified-footer.ufo-reconnecting { background: #3E2723; color: #FFCC80; border-color: #FF9800; }
.theme-dark #app-unified-footer.ufo-failed       { background: #4E1515; color: #EF9A9A; border-color: #EF5350; }
.theme-dark #app-unified-footer.ufo-error        { background: #3E2E00; color: #FFF176; border-color: #F9A825; }

/* ── NEW states (Phase 2): SignalR status + customizable app loader ───────── */

/* SignalR connecting — teal, brief/debounced, non-alarming */
#app-unified-footer.ufo-signalr-connecting {
    background: #E0F7FA;
    color: #004D40;
    border-top: 2px solid #00ACC1;
}

/* SignalR failed — orange, persistent until reconnected */
#app-unified-footer.ufo-signalr-failed {
    background: #FFF3E0;
    color: #6D3200;
    border-top: 2px solid #F57C00;
    cursor: default;
}

/* App loader — default blue; JS overrides color via inline style for customization */
#app-unified-footer.ufo-loading {
    background: #E3F2FD;
    color: #0D47A1;
    border-top: 2px solid #1976D2;
}

/* Dark theme overrides for new states */
.theme-dark #app-unified-footer.ufo-signalr-connecting { background: #00251A; color: #80CBC4; border-color: #00ACC1; }
.theme-dark #app-unified-footer.ufo-signalr-failed     { background: #3E1A00; color: #FFCC80; border-color: #F57C00; }
.theme-dark #app-unified-footer.ufo-loading            { background: #0D2137; color: #90CAF9; border-color: #1976D2; }


/* Bouncing dot loader (reconnecting) */
.ufo-dots { display: inline-flex; align-items: center; gap: 3px; margin-right: 4px; }
.ufo-dots span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    animation: ufo-bounce 1.1s infinite ease-in-out;
}
.ufo-dots span:nth-child(2) { animation-delay: 0.18s; }
.ufo-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes ufo-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.9; }
    40%           { transform: translateY(-6px); opacity: 1; }
}

/* Icon and label */
.ufo-icon  { flex-shrink: 0; font-size: 1rem; }
.ufo-label { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ufo-countdown { opacity: 0.75; font-size: 0.8rem; }

/* Retry / Reset action button */
.ufo-action {
    margin-left: auto;
    flex-shrink: 0;
    min-height: 32px;
    padding: 5px 16px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    background: rgba(0,0,0,0.12);
    color: inherit;
    transition: background 0.15s;
    touch-action: manipulation;
}
.ufo-action:hover  { background: rgba(0,0,0,0.22); }
.ufo-action:active { background: rgba(0,0,0,0.32); }

/* Desktop: offset left edge when permanent drawer is open */
@media (min-width: 960px) {
    body:has(.app-nav-drawer.mud-drawer--open:not(.mud-drawer--closed)) #app-unified-footer {
        padding-left: calc(var(--mud-drawer-width-left, 240px) + 16px);
    }
}

html,
body,
#app {
    min-height: 100%;
}

.navmenu-icon {
    display: none;
}

.manage {
    width: 100dvw;
}

footer {
    background: var(--neutral-layer-4);
    color: var(--neutral-foreground-rest);
    align-items: center;
    padding: 10px 10px;
}

    footer a {
        color: var(--neutral-foreground-rest);
        text-decoration: none;
    }

        footer a:focus {
            outline: 1px dashed;
            outline-offset: 3px;
        }

        footer a:hover {
            text-decoration: underline;
        }

.alert {
    border: 1px dashed var(--accent-fill-rest);
    padding: 5px;
}


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

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

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

/* Global Dialog & Overlay Styles - Consistent across entire application */

/* Backdrop overlay for all dialogs */
.app-backdrop {
    position: fixed !important;
    inset: 0;
    z-index: 2147483644 !important;
    isolation: isolate;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    padding-top: max(env(safe-area-inset-top), 16px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Dialog container - positions above backdrop */
.app-dialog {
    width: min(760px, 96vw);
    max-width: 100%;
    max-height: calc(100vh - 32px);
    margin: auto 0;
    overflow-y: auto;
    border-radius: 14px;
    z-index: 2147483645 !important;
    position: relative;
    background: var(--mud-palette-surface, #fff);
}

/* Sticky header with close button - always visible during scroll */
.app-dialog-header {
    position: sticky;
    top: 0;
    z-index: 2147483646 !important;
    background: var(--mud-palette-surface, #fff);
    padding: 8px;
    margin: -8px -8px 8px -8px;
    border-bottom: 1px solid var(--mud-palette-divider, #e0e0e0);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button styling for dialogs */
.app-dialog-close-btn {
    z-index: 2147483647 !important;
    background: var(--mud-palette-surface, #fff);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.app-dialog-close-btn:hover {
    background: var(--mud-palette-action-hover, rgba(0, 0, 0, 0.04));
}

/* Ensure custom app dialog overlays render above MudLayout drawer/appbar in all routes */
html.town-dialog-open .mud-main-content,
body.town-dialog-open .mud-main-content,
html.town-dialog-open .mud-main-content > div,
body.town-dialog-open .mud-main-content > div {
    position: relative;
    z-index: 2147483640 !important;
}

/* Responsive adjustments for dialogs */
@media (max-width: 600px) {
    .app-backdrop {
        padding: 8px;
        padding-top: max(env(safe-area-inset-top), 8px);
    }

    .app-dialog {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 16px);
        border-radius: 8px;
    }

    /* Reduce padding on mobile for more content space */
    .app-dialog.pa-3 {
        padding: 8px !important;
    }

    .app-dialog-header {
        padding: 8px;
        margin: -8px -8px 8px -8px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    .app-backdrop {
        padding: 4px;
    }

    .app-dialog {
        border-radius: 4px;
        max-height: calc(100vh - 8px);
    }
}

/* Skeleton animation for lazy-loaded card details */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

