/* /Components/Custom/Alert.razor.rz.scp.css */
.loading-container[b-xwibc96z8p] {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 12%);
    backdrop-filter: blur(4px);
    z-index: 1060;
}

.notifications-container[b-xwibc96z8p] {
    width: min(360px, calc(100vw - 32px));
    height: auto;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideIn-b-xwibc96z8p 0.25s ease-out;
}

.flex[b-xwibc96z8p] {
    display: flex;
}

.flex-shrink-0[b-xwibc96z8p] {
    flex-shrink: 0;
}

.alert-card[b-xwibc96z8p] {
    padding: 1.25rem;
    border-radius: 0.75rem;
    background-color: rgb(240 253 244);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(74, 222, 128, 0.22);
}

.alert-card:hover[b-xwibc96z8p] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.alert-card.error[b-xwibc96z8p] {
    background-color: rgb(254 242 242);
    border-color: rgba(248, 113, 113, 0.28);
}

.alert-svg[b-xwibc96z8p] {
    color: rgb(74 222 128);
    width: 1.5rem;
    height: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.35));
}

.alert-card.error .alert-svg[b-xwibc96z8p] {
    color: rgb(239 68 68);
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.25));
}

.alert-prompt-wrap[b-xwibc96z8p] {
    margin-left: 1rem;
}

.alert-prompt-heading[b-xwibc96z8p] {
    font-weight: 700;
    color: rgb(22 101 52);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.alert-card.error .alert-prompt-heading[b-xwibc96z8p] {
    color: rgb(153 27 27);
}

.alert-prompt-prompt[b-xwibc96z8p] {
    margin-top: 0.75rem;
    color: rgb(21 128 61);
    line-height: 1.5;
}

.alert-card.error .alert-prompt-prompt[b-xwibc96z8p] {
    color: rgb(185 28 28);
}

.alert-prompt-prompt p[b-xwibc96z8p] {
    margin-bottom: 0;
}

.alert-button-container[b-xwibc96z8p] {
    display: flex;
    margin-top: 1rem;
    gap: 0.75rem;
}

.alert-button-main[b-xwibc96z8p] {
    padding: 0.5rem 1rem;
    background-color: rgb(22 101 52);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(22, 101, 52, 0.2);
}

.alert-card.error .alert-button-main[b-xwibc96z8p] {
    background-color: rgb(220 38 38);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.alert-button-main:hover[b-xwibc96z8p] {
    background-color: rgb(21 128 61);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.3);
}

.alert-card.error .alert-button-main:hover[b-xwibc96z8p] {
    background-color: rgb(185 28 28);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.28);
}

.alert-button-secondary[b-xwibc96z8p] {
    padding: 0.5rem 1rem;
    background-color: rgb(240 253 244);
    color: rgb(22 101 52);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 1px solid rgba(22, 101, 52, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.alert-card.error .alert-button-secondary[b-xwibc96z8p] {
    background-color: rgb(254 242 242);
    color: rgb(153 27 27);
    border-color: rgba(220, 38, 38, 0.22);
}

.alert-button-secondary:hover[b-xwibc96z8p] {
    background-color: rgb(220, 243, 234);
    border-color: rgba(22, 101, 52, 0.3);
    transform: translateY(-1px);
}

.alert-card.error .alert-button-secondary:hover[b-xwibc96z8p] {
    background-color: rgb(254 226 226);
    border-color: rgba(220, 38, 38, 0.32);
}

@keyframes slideIn-b-xwibc96z8p {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Custom/ChatRoomPage.razor.rz.scp.css */
/* Core Variables */
:root[b-djqsjmv96m] {
    --tg-sent: #E3FFC2; /* Telegram light green */
    --tg-received: #FFFFFF;
    --tg-bg: #8DA4A7; /* Telegram default slate background */
    --brand-main: #3b82f6;
    --primary-gradient: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Base Styles & Utilities */
.bg-brand[b-djqsjmv96m] {
    background-color: var(--brand-main);
}

.btn-brand[b-djqsjmv96m] {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

    .btn-brand:hover[b-djqsjmv96m] {
        filter: brightness(1.1);
        color: white;
    }

.btn-icon[b-djqsjmv96m] {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

    .btn-icon:hover[b-djqsjmv96m] {
        background: #f1f5f9;
        color: #0f172a;
    }

/* Chat List Items */
.chat-list-container[b-djqsjmv96m] {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
}

.chat-list-item[b-djqsjmv96m] {
    background: transparent;
    transition: background 0.2s;
    cursor: pointer;
    width: 100%;
    border-bottom: 1px solid #f1f5f9 !important;
}

    .chat-list-item:hover[b-djqsjmv96m] {
        background: #f8fafc;
    }

.avatar-circle[b-djqsjmv96m] {
    width: 70px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.avatar-circle-sm[b-djqsjmv96m] {
    width: 70px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

/* Layout & Header */
.chat-container[b-djqsjmv96m] {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    position: relative;
    border: 1px solid #e2e8f0;
}

.chat-header[b-djqsjmv96m] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Telegram Background Setup */
.telegram-bg[b-djqsjmv96m] {
    background-color: var(--tg-bg);
    /* Optional: Add a subtle chat pattern URL here if you have one */
    /* background-image: url('/images/chat-pattern.png'); */
    background-size: cover;
}

/* Custom Scrollbar for Chat */
.chat-messages[b-djqsjmv96m]::-webkit-scrollbar {
    width: 6px;
}

.chat-messages[b-djqsjmv96m]::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages[b-djqsjmv96m]::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

/* Message Bubbles (The Telegram Look) */
.message-wrapper[b-djqsjmv96m] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 4px;
}

.message-bubble[b-djqsjmv96m] {
    position: relative;
    padding: 8px 12px 6px 12px;
    border-radius: 12px;
    max-width: 75%;
    width: fit-content;
    box-shadow: 0 1px 2px rgba(16, 35, 47, 0.15);
    display: flex;
    flex-direction: column;
}

/* Received Message Styling */
.message-wrapper.received .message-bubble[b-djqsjmv96m] {
    background-color: var(--tg-received);
    border-bottom-left-radius: 4px;
    margin-right: auto;
}

.sender-name[b-djqsjmv96m] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-main);
    margin-bottom: 2px;
}

/* Sent Message Styling */
.message-wrapper.sent .message-bubble[b-djqsjmv96m] {
    background-color: var(--tg-sent);
    border-bottom-right-radius: 4px;
    margin-left: auto;
}

.message-text[b-djqsjmv96m] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #111827;
    word-wrap: break-word;
    padding-right: 40px; /* Space for the timestamp */
}

.message-time[b-djqsjmv96m] {
    font-size: 0.65rem;
    color: #64748b;
    align-self: flex-end;
    margin-top: -12px;
    margin-right: -4px;
    position: relative;
    z-index: 2;
}

/* Input Area */
.chat-input-area[b-djqsjmv96m] {
    background: #f8fafc;
}

.chat-input-group[b-djqsjmv96m] {
    background: white;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s;
}

    .chat-input-group:focus-within[b-djqsjmv96m] {
        border-color: var(--brand-main);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
    }

/* Animations */
.animate-fade-in[b-djqsjmv96m] {
    animation: fadeIn-b-djqsjmv96m 0.4s ease-in-out;
}

.animate-slide-up[b-djqsjmv96m] {
    animation: slideInUp-b-djqsjmv96m 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: bottom;
}

@keyframes fadeIn-b-djqsjmv96m {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp-b-djqsjmv96m {
    from {
        opacity: 0;
 transform: translateY(20px) ;
    }

    to {
        opacity: 1;
 transform: translateY(0) ;
    }
}
/* /Components/Custom/ImageUpload.razor.rz.scp.css */

/* Modal Styles */
.modal[b-jb7j94luga] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-backdrop[b-jb7j94luga] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 12%);
    backdrop-filter: blur(4px);
    opacity: 0.5;
}

.modal-overlay[b-jb7j94luga] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: start;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn 0.3s ease;
    overflow: scroll;
    padding: 10px 0px;
}

.modal-container[b-jb7j94luga] {
    position: relative;
    width: auto;
    margin: 0.75rem auto;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
    z-index: 1051;
    max-width: 700px;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-container[b-jb7j94luga] {
    width: 600px;
    max-width: 90vw;
}

.modal-full-width[b-jb7j94luga] {
    width: 95vw !important;
    max-width: 95vw !important;
}

.modal-header[b-jb7j94luga] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-title[b-jb7j94luga] {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
}

.modal-close-btn[b-jb7j94luga] {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
}

    .modal-close-btn:hover[b-jb7j94luga] {
        opacity: 0.75;
    }

.modal-body[b-jb7j94luga] {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer[b-jb7j94luga] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    gap: 0.5rem;
}

.btn[b-jb7j94luga] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn-primary[b-jb7j94luga] {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-secondary[b-jb7j94luga] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-info[b-jb7j94luga] {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.modal .show[b-jb7j94luga] {
    display: block;
}

@media (min-width: 576px) {
    .modal-container[b-jb7j94luga] {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}


.camera-file-input[b-jb7j94luga] {
    position: fixed;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.native-file-input[b-jb7j94luga] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.capture-btn[b-jb7j94luga] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    border: 6px solid rgba(255,255,255,0.3);
    padding: 0;
    transition: transform 0.2s;
}

    .capture-btn:active[b-jb7j94luga] {
    }

.thumb-item[b-jb7j94luga] {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 2px;
}

    .thumb-item.active[b-jb7j94luga] {
        border-color: var(--bs-primary);
    }

/* Container scroll handling */
.thumb-nav-wrapper[b-jb7j94luga] {
    position: relative;
    padding: 2px;
}

.thumb-scroll-container[b-jb7j94luga] {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 4px;
    scrollbar-width: none; /* Firefox */
}

    .thumb-scroll-container[b-jb7j94luga]::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

/* Individual Card Styling */
.thumb-card[b-jb7j94luga] {
    position: relative;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 16px;
    cursor: pointer;
    background: #fff;
    padding: 3px; /* Creates the border gap */
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

    .thumb-card img[b-jb7j94luga] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    /* Active State */
    .thumb-card.active[b-jb7j94luga] {
        border-color: var(--brand-main);
 transform: translateY(-4px) ;
        box-shadow: 0 8px 20px rgba(220, 53, 69, 0.2);
    }

        .thumb-card.active img[b-jb7j94luga] {
            opacity: 1;
        }

.active-dot[b-jb7j94luga] {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: var(--brand-main);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Modern Add Action */
.btn-add-image[b-jb7j94luga] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 16px;
    border: 2px dashed #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 0;
}

    .btn-add-image .icon-circle[b-jb7j94luga] {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        margin-bottom: 4px;
        transition: all 0.2s ease;
    }

    .btn-add-image span[b-jb7j94luga] {
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .btn-add-image:hover[b-jb7j94luga] {
        border-color: var(--brand-main);
        background: #fff1f2; /* Light brand tint */
        color: var(--brand-main);
    }

        .btn-add-image:hover .icon-circle[b-jb7j94luga] {
            background: var(--brand-main);
            color: #fff;
            transform: rotate(90deg);
        }

/* Add this to your scoped CSS file */
.view-link:hover[b-jb7j94luga] {
    background: rgba(0, 0, 0, 0.8) !important;
    transition: all 0.2s ease;
}
/* /Components/Custom/Modal.razor.rz.scp.css */
/* Modal Styles */
.modal[b-tzgve2vl5v] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-backdrop[b-tzgve2vl5v] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background: rgb(0 0 0 / 12%);
    backdrop-filter: blur(4px);
    opacity: 0.5;
}

.modal-overlay[b-tzgve2vl5v] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: start;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn 0.3s ease;
    overflow: scroll;
    padding: 10px 0px;
}

.modal-container[b-tzgve2vl5v] {
    position: relative;
    width: auto;
    margin: 0.75rem auto;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
    z-index: 1051;
    max-width: 700px;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-container[b-tzgve2vl5v] {
    width: 600px;
    max-width: 90vw;
}

.modal-full-width[b-tzgve2vl5v] {
    width: 95vw !important;
    max-width: 95vw !important;
}

.modal-header[b-tzgve2vl5v] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-title[b-tzgve2vl5v] {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.25rem;
}

.modal-close-btn[b-tzgve2vl5v] {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    opacity: 0.5;
    cursor: pointer;
}

    .modal-close-btn:hover[b-tzgve2vl5v] {
        opacity: 0.75;
    }

.modal-body[b-tzgve2vl5v] {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer[b-tzgve2vl5v] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
    gap: 0.5rem;
}

.btn[b-tzgve2vl5v] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn-primary[b-tzgve2vl5v] {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-secondary[b-tzgve2vl5v] {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-info[b-tzgve2vl5v] {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.modal .show[b-tzgve2vl5v] {
    display: block;
}

@media (min-width: 576px) {
    .modal-container[b-tzgve2vl5v] {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
/* /Components/Custom/NoPermissionUI.razor.rz.scp.css */
/* Subtle bounce animation for the icon */
.fa-shield-lock[b-44lwjlk01b] {
    animation: lock-wobble-b-44lwjlk01b 3s infinite ease-in-out;
}

@keyframes lock-wobble-b-44lwjlk01b {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

body[b-44lwjlk01b] {
    background-color: #f8f9fa;
}
/* /Components/Custom/SnackBar.razor.rz.scp.css */
/* From Uiverse.io by revanth-004 */
/* COMMON STYLES*/
.popup[b-az8baym43h] {
    margin: 10px;
    box-shadow: 4px 4px 10px -10px rgba(0, 0, 0, 1);
    width: 300px;
    justify-content: space-around;
    align-items: center;
    display: flex;
    border-radius: 4px;
    padding: 5px 0;
    font-weight: 300;
}

    .popup svg[b-az8baym43h] {
        width: 1.25rem;
        height: 1.25rem;
    }

.popup-icon svg[b-az8baym43h] {
    margin: 5px;
    display: flex;
    align-items: center;
}

.close-icon[b-az8baym43h] {
    margin-left: auto;
}

.close-svg[b-az8baym43h] {
    cursor: pointer;
}

.close-path[b-az8baym43h] {
    fill: grey;
}

/*SEPERATE STYLES*/

/* SUCCESS */
.success-popup[b-az8baym43h] {
    background-color: #edfbd8;
    border: solid 1px #84d65a;
}

.success-icon path[b-az8baym43h] {
    fill: #84d65a;
}

.success-message[b-az8baym43h] {
    color: #2b641e;
}

/* ALERT */
.alert-popup[b-az8baym43h] {
    background-color: #fefce8;
    border: solid 1px #facc15;
}

.alert-icon path[b-az8baym43h] {
    fill: #facc15;
}

.alert-message[b-az8baym43h] {
    color: #ca8a04;
}

/* ERROR */

.error-popup[b-az8baym43h] {
    background-color: #fef2f2;
    border: solid 1px #f87171;
}

.error-icon path[b-az8baym43h] {
    fill: #f87171;
}

.error-message[b-az8baym43h] {
    color: #991b1b;
}

/* INFO */

.info-popup[b-az8baym43h] {
    background-color: #eff6ff;
    border: solid 1px #1d4ed8;
}

.info-icon path[b-az8baym43h] {
    fill: #1d4ed8;
}

.info-message[b-az8baym43h] {
    color: #1d4ed8;
}
/* /Components/Layout/Loading.razor.rz.scp.css */
.loading-container[b-vqm1qyq2sy] {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 0 0 / 12%);
    backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1050;
    flex-direction: column;
}

.loader-content[b-vqm1qyq2sy] {
    text-align: center;
}

.loader[b-vqm1qyq2sy] {
    display: block;
    width: 150px;
    height: auto;
    color: white;
    margin-bottom: 20px;
}

.loading-text[b-vqm1qyq2sy] {
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    animation: textPulse-b-vqm1qyq2sy 1.5s ease-in-out infinite;
}

.loader_body[b-vqm1qyq2sy],
.loader_front[b-vqm1qyq2sy],
.loader_handlebars[b-vqm1qyq2sy],
.loader_pedals[b-vqm1qyq2sy],
.loader_pedals-spin[b-vqm1qyq2sy],
.loader_seat[b-vqm1qyq2sy],
.loader_spokes[b-vqm1qyq2sy],
.loader_spokes-spin[b-vqm1qyq2sy],
.loader_tire[b-vqm1qyq2sy] {
    animation: bikeBody-b-vqm1qyq2sy 3s ease-in-out infinite;
    stroke: #ed2124; /* Using a vibrant primary blue */
}

/* Specific Animation Assignments[cite: 2] */
.loader_front[b-vqm1qyq2sy] {
    animation-name: bikeFront-b-vqm1qyq2sy;
}

.loader_handlebars[b-vqm1qyq2sy] {
    animation-name: bikeHandlebars-b-vqm1qyq2sy;
}

.loader_pedals[b-vqm1qyq2sy] {
    animation-name: bikePedals;
}

.loader_pedals-spin[b-vqm1qyq2sy] {
    animation-name: bikePedalsSpin-b-vqm1qyq2sy;
}

.loader_seat[b-vqm1qyq2sy] {
    animation-name: bikeSeat;
}

.loader_spokes[b-vqm1qyq2sy] {
    animation-name: bikeSpokes;
    stroke: currentColor;
}

.loader_spokes-spin[b-vqm1qyq2sy] {
    animation-name: bikeSpokesSpin-b-vqm1qyq2sy;
}

.loader_tire[b-vqm1qyq2sy] {
    animation-name: bikeTire-b-vqm1qyq2sy;
    stroke: currentColor;
}

@keyframes textPulse-b-vqm1qyq2sy {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Core Bike Animations[cite: 2] */
@keyframes bikeBody-b-vqm1qyq2sy {
    from {
        stroke-dashoffset: 79;
    }

    33%, 67% {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -79;
    }
}

@keyframes bikeFront-b-vqm1qyq2sy {
    from {
        stroke-dashoffset: 19;
    }

    33%, 67% {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -19;
    }
}

@keyframes bikeHandlebars-b-vqm1qyq2sy {
    from {
        stroke-dashoffset: 10;
    }

    33%, 67% {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -10;
    }
}

@keyframes bikePedalsSpin-b-vqm1qyq2sy {
    from {
        transform: rotate(0.1875turn);
    }

    to {
        transform: rotate(3.1875turn);
    }
}

@keyframes bikeSpokesSpin-b-vqm1qyq2sy {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(3turn);
    }
}

@keyframes bikeTire-b-vqm1qyq2sy {
    from {
        stroke-dashoffset: 56.549;
        transform: rotate(0);
    }

    33% {
        stroke-dashoffset: 0;
        transform: rotate(0.33turn);
    }

    67% {
        stroke-dashoffset: 0;
        transform: rotate(0.67turn);
    }

    to {
        stroke-dashoffset: -56.549;
        transform: rotate(1turn);
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app[b-rfytui7ym9] {
    height: 100%;
    width: 100%;
    position: absolute;
    display: grid;
    grid-template-columns: auto 1fr;
}

.app-menu[b-rfytui7ym9] {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 8px;
    padding: 5px;
    border-radius: 50px;
    background: #cacaca21;
    margin: 5px;
}

.app-body[b-rfytui7ym9]{
    overflow: hidden;
}

.menu-btn[b-rfytui7ym9], .logo-btn[b-rfytui7ym9] {
    padding: 0px;
    border-radius: 8px;
    width: 45px;
    aspect-ratio: 1 / 1;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: white;
    transition: 0.3s;
    outline: none !important;
    color: black;
}

    .menu-btn:hover[b-rfytui7ym9] {
        background: var(--brand-main);
        color: white;
    }

.selected-menu[b-rfytui7ym9] {
    background: var(--brand-main);
    color: white !important;
}

#blazor-error-ui[b-rfytui7ym9] {
    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-rfytui7ym9] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


@media (max-width: 767px) {
    .menu-btn[b-rfytui7ym9]{
        
    }
}

.cbadge[b-rfytui7ym9] {
    background: red;
    width: 10px;
    height: 10px;
    float: right;
    position: fixed;
    margin-left: 18px;
    border-radius: 10px;
    box-shadow: 1px 1px 2px 0px;
}

.profile-image-menu[b-rfytui7ym9] {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
}

/* Container isolating layout layers */
.menu-item-wrapper[b-rfytui7ym9] {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Floating context menu canvas layout */
.floating-submenu[b-rfytui7ym9] {
    position: absolute;
    left: 58px; /* Pushes container right clear of the 45px sidebar buttons */
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    min-width: 170px;
    z-index: 1050; /* Assures visibility over application views and grids */
    animation: fadeInMenu-b-rfytui7ym9 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Interactive item element spacing customization */
    .floating-submenu .list-group-item[b-rfytui7ym9] {
        color: #333333;
        transition: background-color 0.15s ease;
    }

        .floating-submenu .list-group-item:hover:not(.active)[b-rfytui7ym9] {
            color: white;
            background-color: var(--brand-main);
        }

.submenu-header[b-rfytui7ym9] {
    font-size: 10px;
    letter-spacing: 0.5px;
    background-color: #fafafa;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
}

/* Direction indicator arrow structural configuration */
.submenu-arrow[b-rfytui7ym9] {
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    z-index: -1; /* Keeps base shading under content card borders */
}

/* Fluid entry transitional movement logic */
@keyframes fadeInMenu-b-rfytui7ym9 {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Responsive adjustment rules targeting mobile screens */
@media (max-width: 767px) {
    .floating-submenu[b-rfytui7ym9] {
        left: 52px;
    }
}
/* /Components/Layout/PageLoadingContainer.razor.rz.scp.css */
:root[b-0uigzztlm7] {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --bg-light: #ffffff;
}

.loading-container[b-0uigzztlm7] {
    position: fixed;
    inset: 0;
    background: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

/* The Portal - Main Container */
.brand-portal[b-0uigzztlm7] {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Animated Rings */
.portal-rings[b-0uigzztlm7] {
    position: absolute;
    inset: 0;
}

.ring[b-0uigzztlm7] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    border: 2px solid transparent;
    animation: morphing-b-0uigzztlm7 8s infinite linear;
}

.ring-1[b-0uigzztlm7] {
    width: 220px;
    height: 220px;
    border-left-color: var(--primary);
    opacity: 0.4;
}

.ring-2[b-0uigzztlm7] {
    width: 240px;
    height: 240px;
    border-right-color: var(--secondary);
    animation-duration: 6s;
    animation-direction: reverse;
    opacity: 0.3;
}

.ring-3[b-0uigzztlm7] {
    width: 260px;
    height: 260px;
    border-top-color: var(--primary);
    animation-duration: 10s;
    opacity: 0.1;
}

/* Text and Branding */
.brand-content[b-0uigzztlm7] {
    text-align: center;
    z-index: 10;
}

.loading-text[b-0uigzztlm7] {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    text-transform: uppercase;
}

.status-indicator[b-0uigzztlm7] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.status-label[b-0uigzztlm7] {
    font-size: 0.65rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 2px;
}

.dot[b-0uigzztlm7] {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink-b-0uigzztlm7 1s infinite;
}

/* Progress Bar - Minimalist */
.progress-track[b-0uigzztlm7] {
    width: 140px;
    height: 2px;
    background: #f1f5f9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-glow[b-0uigzztlm7] {
    position: absolute;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: slide-b-0uigzztlm7 1.5s infinite ease-in-out;
}

/* Animations */
@keyframes morphing-b-0uigzztlm7 {
    0% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        border-radius: 50% 50% 33% 67% / 65% 56% 44% 35%;
    }

    100% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes slide-b-0uigzztlm7 {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes blink-b-0uigzztlm7 {
    0%, 100% {
        opacity: 1;
    }

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

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


#components-reconnect-modal[b-p7xpiytdag] {
    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-p7xpiytdag 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-p7xpiytdag {
    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/ActiveSignalRSessionsPage.razor.rz.scp.css */
.signalr-page[b-c5k5gtjf2q] {
    min-height: 100vh;
    padding: 24px;
    background: #f5f7f9;
    color: #17202a;
    overflow-y: auto;
}

.page-header[b-c5k5gtjf2q] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.page-header h1[b-c5k5gtjf2q] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 800;
}

.page-header p[b-c5k5gtjf2q] {
    margin: 4px 0 0;
    color: #68717d;
}

.icon-command[b-c5k5gtjf2q],
.kick-button[b-c5k5gtjf2q],
.cancel-button[b-c5k5gtjf2q],
.confirm-kick-button[b-c5k5gtjf2q],
.dialog-close[b-c5k5gtjf2q] {
    border: 0;
    cursor: pointer;
}

.icon-command[b-c5k5gtjf2q] {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #dce1e6;
    border-radius: 8px;
    background: #fff;
    color: #17202a;
    font-weight: 700;
}

.summary-grid[b-c5k5gtjf2q] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.summary-item[b-c5k5gtjf2q] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 16px;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    background: #fff;
}

.summary-icon[b-c5k5gtjf2q] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.summary-icon.accounts[b-c5k5gtjf2q] { background: #e9f2ff; color: #2368b7; }
.summary-icon.devices[b-c5k5gtjf2q] { background: #e8f7ef; color: #188653; }
.summary-icon.connections[b-c5k5gtjf2q] { background: #fff2dc; color: #9b6000; }
.summary-icon.reconnecting[b-c5k5gtjf2q] { background: #fce8e8; color: #c5333e; }

.summary-item div[b-c5k5gtjf2q] {
    display: flex;
    flex-direction: column;
}

.summary-item strong[b-c5k5gtjf2q] {
    font-size: 1.45rem;
    line-height: 1.1;
}

.summary-item span:last-child[b-c5k5gtjf2q] {
    margin-top: 4px;
    color: #68717d;
    font-size: .78rem;
}

.filter-bar[b-c5k5gtjf2q] {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 1fr));
    gap: 12px;
    padding: 16px;
    border: 1px solid #e2e6ea;
    border-radius: 8px;
    background: #fff;
}

.filter-bar label[b-c5k5gtjf2q] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    color: #4f5965;
    font-size: .76rem;
    font-weight: 700;
}

.filter-bar input[b-c5k5gtjf2q],
.filter-bar select[b-c5k5gtjf2q] {
    width: 100%;
    min-height: 40px;
    padding: 0 11px;
    border: 1px solid #dce1e6;
    border-radius: 6px;
    background: #f8f9fa;
    color: #17202a;
    font-size: .9rem;
}

.input-with-icon[b-c5k5gtjf2q] {
    position: relative;
}

.input-with-icon i[b-c5k5gtjf2q] {
    position: absolute;
    top: 50%;
    left: 12px;
    color: #87909a;
    translate: 0 -50%;
}

.input-with-icon input[b-c5k5gtjf2q] {
    padding-left: 36px;
}

.live-label[b-c5k5gtjf2q] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 2px 10px;
    color: #47515c;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.live-dot[b-c5k5gtjf2q] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1f9d61;
    box-shadow: 0 0 0 4px #dff5e9;
}

.result-count[b-c5k5gtjf2q] {
    margin-left: auto;
    color: #7a838d;
    font-weight: 600;
    text-transform: none;
}

.account-list[b-c5k5gtjf2q] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.account-group[b-c5k5gtjf2q] {
    overflow: hidden;
    border: 1px solid #dde2e7;
    border-radius: 8px;
    background: #fff;
}

.account-header[b-c5k5gtjf2q] {
    display: grid;
    grid-template-columns: 46px minmax(150px, 1fr) minmax(220px, 1.3fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e8ebee;
    background: #fafbfc;
}

.account-avatar[b-c5k5gtjf2q] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1f2933;
    color: #fff;
    font-weight: 800;
}

.account-identity h2[b-c5k5gtjf2q] {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.account-identity p[b-c5k5gtjf2q] {
    margin: 2px 0 0;
    color: #68717d;
    font-size: .82rem;
}

.account-meta[b-c5k5gtjf2q] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: #55606c;
    font-size: .8rem;
}

.account-meta span[b-c5k5gtjf2q] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.account-counts[b-c5k5gtjf2q] {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 7px;
    text-align: right;
}

.account-counts strong[b-c5k5gtjf2q] { font-size: .95rem; }
.account-counts span[b-c5k5gtjf2q] { color: #7a838d; font-size: .72rem; }

.device-list[b-c5k5gtjf2q] {
    padding: 0 16px;
}

.device-row[b-c5k5gtjf2q] {
    display: grid;
    grid-template-columns: 42px minmax(170px, 1.3fr) minmax(150px, 1fr) minmax(150px, 1fr) 54px auto;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f2;
}

.device-row:last-child[b-c5k5gtjf2q] { border-bottom: 0; }

.device-kind[b-c5k5gtjf2q] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.device-kind.desktop[b-c5k5gtjf2q] { background: #e9f2ff; color: #2368b7; }
.device-kind.mobile[b-c5k5gtjf2q] { background: #e8f7ef; color: #188653; }
.device-kind.tablet[b-c5k5gtjf2q] { background: #fff2dc; color: #9b6000; }
.device-kind.unknown[b-c5k5gtjf2q] { background: #edf0f3; color: #66717c; }

.device-primary[b-c5k5gtjf2q],
.device-time[b-c5k5gtjf2q] {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.device-primary > span[b-c5k5gtjf2q],
.device-time span[b-c5k5gtjf2q] {
    overflow: hidden;
    color: #7a838d;
    font-size: .76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-time strong[b-c5k5gtjf2q] {
    overflow: hidden;
    margin-top: 3px;
    color: #37414c;
    font-size: .78rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.device-title[b-c5k5gtjf2q] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 3px;
}

.status[b-c5k5gtjf2q],
.current-device[b-c5k5gtjf2q] {
    padding: 3px 7px;
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 800;
}

.status.connected[b-c5k5gtjf2q] { background: #def3e8; color: #16784a; }
.status.unknown[b-c5k5gtjf2q] { background: #e8edf2; color: #4c5864; }
.status.reconnecting[b-c5k5gtjf2q] { background: #fff0d6; color: #8e5800; }
.status.kicking[b-c5k5gtjf2q] { background: #fde3e5; color: #b82432; }
.current-device[b-c5k5gtjf2q] { background: #e8edf2; color: #4c5864; }

.connection-count[b-c5k5gtjf2q] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #57616c;
}

.kick-button[b-c5k5gtjf2q] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #efb5ba;
    border-radius: 6px;
    background: #fff;
    color: #c42636;
    font-size: .78rem;
    font-weight: 800;
    white-space: nowrap;
}

.kick-button:disabled[b-c5k5gtjf2q] {
    cursor: not-allowed;
    opacity: .42;
}

.empty-state[b-c5k5gtjf2q] {
    padding: 64px 20px;
    border: 1px dashed #cfd5db;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.empty-state i[b-c5k5gtjf2q] { color: #98a1aa; font-size: 2rem; }
.empty-state h2[b-c5k5gtjf2q] { margin: 12px 0 4px; font-size: 1.05rem; }
.empty-state p[b-c5k5gtjf2q] { margin: 0; color: #7a838d; }

.session-dialog-backdrop[b-c5k5gtjf2q] {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgb(17 24 32 / 50%);
    backdrop-filter: blur(4px);
}

.session-dialog[b-c5k5gtjf2q] {
    position: relative;
    width: min(100%, 480px);
    padding: 28px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 60px rgb(0 0 0 / 22%);
}

.dialog-close[b-c5k5gtjf2q] {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f3f5;
    color: #59636e;
}

.dialog-icon[b-c5k5gtjf2q] {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #fde5e7;
    color: #c42636;
    font-size: 1.25rem;
}

.session-dialog h2[b-c5k5gtjf2q] { margin: 0 0 6px; font-size: 1.25rem; }
.session-dialog > p[b-c5k5gtjf2q] { margin: 0 0 18px; color: #6b7480; }

.session-dialog dl[b-c5k5gtjf2q] {
    margin: 0;
    padding: 4px 14px;
    border: 1px solid #e4e8ec;
    border-radius: 6px;
    background: #f8f9fa;
}

.session-dialog dl div[b-c5k5gtjf2q] {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e8eb;
}

.session-dialog dl div:last-child[b-c5k5gtjf2q] { border-bottom: 0; }
.session-dialog dt[b-c5k5gtjf2q] { color: #737d87; font-size: .78rem; }
.session-dialog dd[b-c5k5gtjf2q] { margin: 0; color: #2f3943; font-size: .84rem; font-weight: 700; }

.dialog-actions[b-c5k5gtjf2q] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.cancel-button[b-c5k5gtjf2q],
.confirm-kick-button[b-c5k5gtjf2q] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 6px;
    font-weight: 800;
}

.cancel-button[b-c5k5gtjf2q] { background: #eef1f3; color: #3f4953; }
.confirm-kick-button[b-c5k5gtjf2q] { background: #c42636; color: #fff; }
.cancel-button:disabled[b-c5k5gtjf2q],
.confirm-kick-button:disabled[b-c5k5gtjf2q] { cursor: not-allowed; opacity: .6; }

@media (max-width: 1100px) {
    .summary-grid[b-c5k5gtjf2q] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .filter-bar[b-c5k5gtjf2q] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .device-row[b-c5k5gtjf2q] { grid-template-columns: 42px minmax(160px, 1fr) minmax(140px, 1fr) 54px auto; }
    .device-time:nth-of-type(4)[b-c5k5gtjf2q] { display: none; }
}

@media (max-width: 767px) {
    .signalr-page[b-c5k5gtjf2q] { padding: 16px 12px 28px; }
    .page-header h1[b-c5k5gtjf2q] { font-size: 1.35rem; }
    .page-header p[b-c5k5gtjf2q] { font-size: .82rem; }
    .icon-command span[b-c5k5gtjf2q] { display: none; }
    .icon-command[b-c5k5gtjf2q] { width: 42px; padding: 0; justify-content: center; }
    .summary-grid[b-c5k5gtjf2q] { gap: 8px; }
    .summary-item[b-c5k5gtjf2q] { min-height: 76px; padding: 12px; }
    .summary-icon[b-c5k5gtjf2q] { width: 36px; height: 36px; }
    .summary-item strong[b-c5k5gtjf2q] { font-size: 1.15rem; }
    .filter-bar[b-c5k5gtjf2q] { grid-template-columns: 1fr; padding: 12px; }
    .account-header[b-c5k5gtjf2q] { grid-template-columns: 42px minmax(0, 1fr) auto; }
    .account-meta[b-c5k5gtjf2q] { grid-column: 2 / -1; }
    .account-counts[b-c5k5gtjf2q] { grid-column: 3; grid-row: 1; }
    .device-list[b-c5k5gtjf2q] { padding: 0 12px; }
    .device-row[b-c5k5gtjf2q] {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        gap: 10px;
        padding: 14px 0;
    }
    .device-primary[b-c5k5gtjf2q] { grid-column: 2 / 3; }
    .device-time[b-c5k5gtjf2q] { grid-column: 2 / -1; }
    .device-time:nth-of-type(4)[b-c5k5gtjf2q] { display: flex; }
    .connection-count[b-c5k5gtjf2q] { grid-column: 3; grid-row: 1; }
    .kick-button[b-c5k5gtjf2q] { grid-column: 2 / -1; width: 100%; }
    .session-dialog[b-c5k5gtjf2q] { padding: 24px 18px 18px; }
    .dialog-actions[b-c5k5gtjf2q] { display: grid; grid-template-columns: 1fr 1fr; }
}
/* /Components/Pages/BranchAndStockViewPage.razor.rz.scp.css */
/* Enables scrolling inside the container boundary */
.sticky-container[b-m0pls4d4xw] {
    overflow-y: auto;
    position: relative;
}

    /* --- Sticky Header Logic --- */
    .sticky-container thead th[b-m0pls4d4xw] {
        position: sticky;
        top: 0;
        z-index: 20; /* High z-index ensures it passes over all body cells and badges */
        background-color: #212529 !important; /* Matches 'table-dark' background */
        color: #ffffff !important;
    }

    /* --- Sticky Footer Logic --- */
    .sticky-container tfoot td[b-m0pls4d4xw] {
        position: sticky;
        bottom: 0;
        z-index: 20; /* High z-index prevents data rows from sliding over the footer */
        background-color: #f8f9fa !important; /* Matches 'table-light' background */
        color: #212529 !important;
        /* Adds a crisp, distinct divider shadow line above the footer numbers */
        box-shadow: inset 0 2px 0 #dee2e6, inset 0 -1px 0 #dee2e6;
    }

/* Smooth out scrolling performance on mobile engines */
.sticky-container[b-m0pls4d4xw] {
    -webkit-overflow-scrolling: touch;
}
/* /Components/Pages/BranchListPage.razor.rz.scp.css */
/* Styling for a cleaner mobile experience */
.bg-primary-subtle[b-jpxoy7x246] {
    background-color: var(--brand-main);
}

.card[b-jpxoy7x246] {
    border-left: 4px solid var(--brand-dark) !important; /* Visual branding on side of card */
    transition: transform 0.1s ease;
}

    .card:active[b-jpxoy7x246] {
    }


/* Custom sizing for the icon-only mobile buttons */
.action-btn[b-jpxoy7x246] {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

/* Subtle tap feedback for the list item */
.custom-list-item[b-jpxoy7x246] {
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .custom-list-item:active[b-jpxoy7x246] {
        background-color: #f8f9fa; /* Light grey on tap */
    }

    /* Ensure the last item doesn't have a lingering bottom border */
    .custom-list-item:last-child[b-jpxoy7x246] {
        border-bottom: none !important;
    }
/* /Components/Pages/CleanAuditLogsPage.razor.rz.scp.css */
.audit-clean-page[b-3r4r597d81] {
    min-height: 100vh;
    padding: 20px;
    background: #f4f6f8;
    color: #202428;
}

.audit-clean-scroll[b-3r4r597d81] {
    height: calc(100vh - 40px);
    padding: 4px 4px 112px;
}

.page-header[b-3r4r597d81],
.year-toolbar[b-3r4r597d81],
.section-title-row[b-3r4r597d81],
.selection-bar[b-3r4r597d81],
.dialog-header[b-3r4r597d81],
.dialog-actions[b-3r4r597d81] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.page-header[b-3r4r597d81] {
    max-width: 1180px;
    margin: 0 auto 24px;
}

.page-kicker[b-3r4r597d81],
.dialog-kicker[b-3r4r597d81] {
    color: #b5121b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.page-header h1[b-3r4r597d81] {
    margin: 4px 0 3px;
    font-size: 29px;
    font-weight: 800;
}

.page-header p[b-3r4r597d81],
.calendar-section p[b-3r4r597d81] {
    margin: 0;
    color: #697077;
}

.icon-action[b-3r4r597d81],
.dialog-close[b-3r4r597d81] {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid #dfe3e7;
    border-radius: 8px;
    background: #fff;
    color: #31363b;
}

.year-toolbar[b-3r4r597d81] {
    max-width: 1180px;
    margin: 0 auto 26px;
    padding: 18px 20px;
    border: 1px solid #e2e5e8;
    border-left: 4px solid #b5121b;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(25, 31, 36, 0.06);
}

.year-toolbar label[b-3r4r597d81] {
    display: block;
    margin-bottom: 6px;
    color: #656c72;
    font-size: 12px;
    font-weight: 700;
}

.year-toolbar select[b-3r4r597d81] {
    min-width: 160px;
    height: 42px;
    padding: 0 38px 0 12px;
    border: 1px solid #ccd2d7;
    border-radius: 6px;
    background: #fff;
    color: #202428;
    font-size: 16px;
    font-weight: 700;
}

.year-summary[b-3r4r597d81] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.year-summary span[b-3r4r597d81] {
    color: #b5121b;
    font-size: 26px;
    font-weight: 800;
}

.year-summary small[b-3r4r597d81] {
    color: #737a80;
}

.calendar-section[b-3r4r597d81] {
    max-width: 1180px;
    margin: 0 auto;
}

.section-title-row[b-3r4r597d81] {
    margin-bottom: 14px;
}

.section-title-row h2[b-3r4r597d81] {
    margin: 0 0 3px;
    font-size: 18px;
    font-weight: 800;
}

.text-action[b-3r4r597d81] {
    border: 0;
    background: transparent;
    color: #b5121b;
    font-size: 13px;
    font-weight: 700;
}

.month-grid[b-3r4r597d81] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.month-tile[b-3r4r597d81] {
    position: relative;
    min-height: 152px;
    padding: 16px;
    overflow: hidden;
    border: 1px solid #dfe3e6;
    border-radius: 8px;
    background: #fff;
    color: #202428;
    text-align: left;
    box-shadow: 0 4px 12px rgba(25, 31, 36, 0.04);
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.month-tile:hover:not(:disabled)[b-3r4r597d81] {
    border-color: #d49499;
    box-shadow: 0 7px 18px rgba(110, 18, 25, 0.09);
}

.month-tile.selected[b-3r4r597d81] {
    border-color: #b5121b;
    background: #fffafa;
    box-shadow: 0 7px 18px rgba(110, 18, 25, 0.11);
}

.month-tile:disabled[b-3r4r597d81] {
    cursor: not-allowed;
    opacity: 0.48;
}

.month-title-row[b-3r4r597d81] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.month-name[b-3r4r597d81] {
    font-size: 15px;
    font-weight: 800;
}

.month-number[b-3r4r597d81] {
    color: #a0a6ab;
    font-size: 12px;
    font-weight: 700;
}

.month-total[b-3r4r597d81] {
    margin-top: 18px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.month-caption[b-3r4r597d81] {
    margin-top: 4px;
    color: #777e84;
    font-size: 11px;
}

.month-breakdown[b-3r4r597d81] {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-top: 16px;
    color: #596067;
    font-size: 11px;
}

.month-breakdown i[b-3r4r597d81] {
    width: 13px;
    color: #9a2229;
}

.selected-mark[b-3r4r597d81] {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #b5121b;
    color: #fff;
    font-size: 11px;
}

.selection-bar[b-3r4r597d81] {
    position: fixed;
    right: 24px;
    bottom: 18px;
    left: 96px;
    z-index: 20;
    max-width: 1180px;
    min-height: 72px;
    margin: 0 auto;
    padding: 12px 14px 12px 20px;
    border: 1px solid #dfe3e6;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(20, 25, 29, 0.15);
}

.selection-bar > div[b-3r4r597d81] {
    display: flex;
    flex-direction: column;
}

.selection-bar span[b-3r4r597d81] {
    color: #737a80;
    font-size: 12px;
}

.open-clean-button[b-3r4r597d81],
.confirm-clean-button[b-3r4r597d81],
.cancel-button[b-3r4r597d81] {
    min-height: 43px;
    border-radius: 6px;
    padding: 0 18px;
    font-weight: 750;
}

.open-clean-button[b-3r4r597d81],
.confirm-clean-button[b-3r4r597d81] {
    border: 1px solid #b5121b;
    background: #b5121b;
    color: #fff;
}

.open-clean-button:disabled[b-3r4r597d81],
.confirm-clean-button:disabled[b-3r4r597d81] {
    border-color: #c8cdd1;
    background: #c8cdd1;
    cursor: not-allowed;
}

.open-clean-button i[b-3r4r597d81],
.confirm-clean-button i[b-3r4r597d81] {
    margin-right: 8px;
}

.clean-dialog-backdrop[b-3r4r597d81] {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(20, 24, 28, 0.62);
    backdrop-filter: blur(5px);
}

.clean-dialog[b-3r4r597d81] {
    width: min(560px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    border: 1px solid #e0e4e7;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(10, 14, 17, 0.28);
}

.dialog-header[b-3r4r597d81] {
    padding: 22px 22px 16px;
}

.dialog-icon[b-3r4r597d81] {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #f7e7e8;
    color: #b5121b;
    font-size: 20px;
}

.dialog-header > div:nth-child(2)[b-3r4r597d81] {
    flex: 1;
}

.dialog-header h2[b-3r4r597d81] {
    margin: 3px 0 0;
    font-size: 20px;
    font-weight: 800;
}

.dialog-close[b-3r4r597d81] {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
}

.selection-summary[b-3r4r597d81] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 22px 16px;
}

.selection-summary span[b-3r4r597d81] {
    padding: 7px 10px;
    border: 1px solid #e1e4e7;
    border-radius: 6px;
    background: #f7f8f9;
    color: #555c62;
    font-size: 12px;
    font-weight: 700;
}

.selection-summary i[b-3r4r597d81] {
    margin-right: 6px;
    color: #b5121b;
}

.target-options[b-3r4r597d81] {
    display: grid;
    gap: 10px;
    padding: 0 22px;
}

.target-option[b-3r4r597d81] {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    gap: 12px;
    align-items: center;
    min-height: 74px;
    padding: 12px;
    border: 1px solid #dfe3e6;
    border-radius: 8px;
    background: #fff;
    color: #23272b;
    text-align: left;
}

.target-option.selected[b-3r4r597d81] {
    border-color: #b5121b;
    background: #fffafa;
}

.target-icon[b-3r4r597d81] {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-size: 18px;
}

.target-icon.login[b-3r4r597d81] {
    background: #e7f2ec;
    color: #16814a;
}

.target-icon.action[b-3r4r597d81] {
    background: #edf0f4;
    color: #48535d;
}

.target-option strong[b-3r4r597d81],
.target-option small[b-3r4r597d81] {
    display: block;
}

.target-option small[b-3r4r597d81] {
    margin-top: 3px;
    color: #747b81;
    font-size: 11px;
}

.target-check[b-3r4r597d81] {
    color: #d3d7da;
}

.target-option.selected .target-check[b-3r4r597d81] {
    color: #b5121b;
}

.dialog-warning[b-3r4r597d81],
.clean-error[b-3r4r597d81] {
    display: flex;
    gap: 9px;
    margin: 16px 22px 0;
    padding: 11px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.45;
}

.dialog-warning[b-3r4r597d81] {
    border: 1px solid #ead9b3;
    background: #fff9eb;
    color: #725719;
}

.clean-error[b-3r4r597d81] {
    border: 1px solid #efc5c8;
    background: #fff1f2;
    color: #9e171f;
}

.dialog-actions[b-3r4r597d81] {
    justify-content: flex-end;
    padding: 18px 22px 22px;
}

.cancel-button[b-3r4r597d81] {
    border: 1px solid #cfd4d8;
    background: #fff;
    color: #4a5157;
}

.cleaning-state[b-3r4r597d81],
.success-state[b-3r4r597d81] {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 26px;
    text-align: center;
}

.cleaning-state h2[b-3r4r597d81],
.success-state h2[b-3r4r597d81] {
    margin: 24px 0 6px;
    font-size: 22px;
    font-weight: 800;
}

.cleaning-state p[b-3r4r597d81],
.success-state p[b-3r4r597d81] {
    margin: 0;
    color: #5e666c;
}

.cleaning-state small[b-3r4r597d81],
.success-state small[b-3r4r597d81] {
    margin-top: 12px;
    color: #858b90;
}

.cleaning-visual[b-3r4r597d81] {
    position: relative;
    width: 220px;
    height: 92px;
    overflow: hidden;
}

.cleaning-surface[b-3r4r597d81] {
    position: absolute;
    right: 18px;
    bottom: 20px;
    left: 18px;
    border-top: 2px solid #ccd2d6;
}

.cleaning-broom[b-3r4r597d81] {
    position: absolute;
    bottom: 24px;
    left: calc(50% - 17px);
    color: #b5121b;
    font-size: 36px;
    animation: cleanup-sweep-b-3r4r597d81 1100ms ease-in-out infinite alternate;
}

.cleaning-mark[b-3r4r597d81] {
    position: absolute;
    bottom: 14px;
    width: 20px;
    border-top: 3px solid #7b8389;
    opacity: 0;
    animation: cleanup-mark-b-3r4r597d81 1100ms ease-in-out infinite;
}

.mark-one[b-3r4r597d81] { left: 58px; }
.mark-two[b-3r4r597d81] { left: 100px; animation-delay: 180ms; }
.mark-three[b-3r4r597d81] { left: 142px; animation-delay: 360ms; }

.cleaning-flow[b-3r4r597d81] {
    width: min(320px, 88%);
    height: 5px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 4px;
    background: #eceff1;
}

.cleaning-flow span[b-3r4r597d81] {
    display: block;
    width: 38%;
    height: 100%;
    background: #b5121b;
    animation: cleanup-flow-b-3r4r597d81 1150ms ease-in-out infinite;
}

.success-icon[b-3r4r597d81] {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border: 2px solid #1b9156;
    border-radius: 50%;
    background: #e9f5ee;
    color: #16814a;
    font-size: 31px;
    animation: success-rise-b-3r4r597d81 420ms ease-out both;
}

@keyframes cleanup-sweep-b-3r4r597d81 {
    from { transform: translateX(-62px) rotate(-12deg); }
    to { transform: translateX(62px) rotate(10deg); }
}

@keyframes cleanup-mark-b-3r4r597d81 {
    0%, 24% { opacity: 0; transform: translateX(0); }
    50% { opacity: 0.7; }
    100% { opacity: 0; transform: translateX(18px); }
}

@keyframes cleanup-flow-b-3r4r597d81 {
    from { transform: translateX(-105%); }
    to { transform: translateX(270%); }
}

@keyframes success-rise-b-3r4r597d81 {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .month-grid[b-3r4r597d81] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .selection-bar[b-3r4r597d81] {
        left: 86px;
    }
}

@media (max-width: 680px) {
    .audit-clean-page[b-3r4r597d81] {
        padding: 14px;
    }

    .audit-clean-scroll[b-3r4r597d81] {
        height: calc(100vh - 28px);
        padding-bottom: 150px;
    }

    .page-header[b-3r4r597d81] {
        align-items: flex-start;
    }

    .page-header h1[b-3r4r597d81] {
        font-size: 24px;
    }

    .year-toolbar[b-3r4r597d81] {
        align-items: flex-end;
        padding: 15px;
    }

    .month-grid[b-3r4r597d81] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .month-tile[b-3r4r597d81] {
        min-height: 144px;
        padding: 13px;
    }

    .selection-bar[b-3r4r597d81] {
        right: 12px;
        bottom: 12px;
        left: 86px;
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
    }

    .open-clean-button[b-3r4r597d81] {
        width: 100%;
    }

    .dialog-header[b-3r4r597d81] {
        gap: 11px;
        padding: 18px 16px 14px;
    }

    .selection-summary[b-3r4r597d81],
    .target-options[b-3r4r597d81] {
        padding-right: 16px;
        padding-left: 16px;
    }

    .dialog-warning[b-3r4r597d81],
    .clean-error[b-3r4r597d81] {
        margin-right: 16px;
        margin-left: 16px;
    }

    .dialog-actions[b-3r4r597d81] {
        padding: 16px;
    }
}

@media (max-width: 420px) {
    .month-grid[b-3r4r597d81] {
        grid-template-columns: 1fr;
    }

    .selection-bar[b-3r4r597d81] {
        left: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cleaning-broom[b-3r4r597d81],
    .cleaning-mark[b-3r4r597d81],
    .cleaning-flow span[b-3r4r597d81],
    .success-icon[b-3r4r597d81] {
        animation: none;
    }
}
/* /Components/Pages/DashboardPage.razor.rz.scp.css */
.stat-icon[b-qami2cih2a] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bg-primary-subtle[b-qami2cih2a] {
    background-color: var(--brand-main);
}

.bg-warning-subtle[b-qami2cih2a] {
    background-color: #fffbeb;
}

.bg-success-subtle[b-qami2cih2a] {
    background-color: #f0fdf4;
}

.bg-danger-subtle[b-qami2cih2a] {
    background-color: #fef2f2;
}

.avatar-sm[b-qami2cih2a] {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.btn-icon-sm[b-qami2cih2a] {
    border: none;
    background: #f8fafc;
    color: #64748b;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    transition: all 0.2s;
}

    .btn-icon-sm:hover[b-qami2cih2a] {
        background: #e2e8f0;
        color: #0f172a;
    }

.border-bottom-light[b-qami2cih2a] {
    border-bottom: 1px solid #f1f5f9;
}

.tiny[b-qami2cih2a] {
    font-size: 0.6rem;
}

.uppercase[b-qami2cih2a] {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.animate-pulse[b-qami2cih2a] {
    animation: pulse-b-qami2cih2a 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-b-qami2cih2a {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.rank-number[b-qami2cih2a] {
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: #64748b;
}

.list-group-item:nth-child(1) .rank-number[b-qami2cih2a] {
    background: #fef3c7;
    color: #d97706;
}
/* Gold for #1 */
/* /Components/Pages/EasySearchItemPage.razor.rz.scp.css */
.item-card-hover[b-ddnp2pwojs] {
    transition: transform 0.2s, box-shadow 0.2s;
}

    .item-card-hover:hover[b-ddnp2pwojs] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    }

.animate-fade-in[b-ddnp2pwojs] {
    animation: fadeIn-b-ddnp2pwojs 0.3s ease;
}

@keyframes fadeIn-b-ddnp2pwojs {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-white[b-ddnp2pwojs] {
    background: white;
    color: #475569;
}

.input-group .form-check-input:checked[b-ddnp2pwojs] {
    background-color: var(--brand-main);
    border-color: var(--brand-main);
}

.form-floating > .form-control:focus[b-ddnp2pwojs],
.form-floating > .form-control:not(:placeholder-shown)[b-ddnp2pwojs] {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    background-color: #f8f9fa !important;
}
/* /Components/Pages/ItemEntryPage.razor.rz.scp.css */
.shadow-xs[b-ibp6f0zutj] {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.shadow-primary[b-ibp6f0zutj] {
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.border-dashed[b-ibp6f0zutj] {
    border: 2px dashed #dee2e6 !important;
}

.min-vh-50[b-ibp6f0zutj] {
    min-height: 50vh;
}

/* Animation for smooth state switching */
.animate-fade-in[b-ibp6f0zutj] {
    animation: fadeIn-b-ibp6f0zutj 0.4s ease-in-out;
}

@keyframes fadeIn-b-ibp6f0zutj {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-list[b-ibp6f0zutj] {
    background: #fff;
    border: 1px solid #eee;
}

.list-item-row[b-ibp6f0zutj] {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f8f8;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem 1.25rem;
}

    .list-item-row.is-active[b-ibp6f0zutj] {
        border-bottom-color: transparent;
    }

.label-tiny[b-ibp6f0zutj] {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: #b0b0b0;
    margin-bottom: 4px;
}

.expand-tray[b-ibp6f0zutj] {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.tray-content-wrapper[b-ibp6f0zutj] {
    background: #fbfbfb;
    border-radius: 12px;
    padding: 1.5rem;
}

.btn-expand-icon[b-ibp6f0zutj] {
    color: #ccc;
    transition: transform 0.3s ease;
}

.is-active .btn-expand-icon[b-ibp6f0zutj] {
    transform: rotate(180deg);
    color: #0d6efd;
}
/* /Components/Pages/ItemListAndSearchPage.razor.rz.scp.css */
.search-container[b-am9s4tpj98] {
    display: flex;
    background: #efefef;
    border-radius: 20px;
    padding: 10px;
    max-width: 500px;
}

input.search-input[b-am9s4tpj98] {
    width: 100%;
    background: transparent;
    border: none;
    outline: none !important;
}

.top-bar[b-am9s4tpj98] {
    margin-top: 10px;
    display: flex;
    justify-content: end;
    padding-bottom: 10px;
    gap: 10px;
    margin-right: 10px;
}

button.btn-none.icon-btn[b-am9s4tpj98] {
    color: #5a5a5a;
}

/* Container optimization */
.item-grid-container[b-am9s4tpj98] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 20px;
    background-color: #f8fafc; /* Very light slate background */
}

/* Card Wrapper for better animation handling */
.item-card-wrapper[b-am9s4tpj98] {
    perspective: 1000px;
}

.item-card[b-am9s4tpj98] {
    appearance: none;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
}

    .item-card:hover[b-am9s4tpj98] {
        transform: translateY(-8px);
        box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
        border-color: var(--brand-main);
    }

/* Image section with Zoom */
.card-image-wrapper[b-am9s4tpj98] {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #f1f5f9;
    overflow: hidden;
}

    .card-image-wrapper img[b-am9s4tpj98] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.item-card:hover .card-image-wrapper img[b-am9s4tpj98] {
}

/* Glassmorphism Badge */
.stock-badge[b-am9s4tpj98] {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1e293b;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
}

.status-dot[b-am9s4tpj98] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Interaction Overlay */
.card-overlay[b-am9s4tpj98] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 116, 175, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.item-card:hover .card-overlay[b-am9s4tpj98] {
    opacity: 1;
}

.overlay-text[b-am9s4tpj98] {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.item-card:hover .overlay-text[b-am9s4tpj98] {
    transform: translateY(0);
}

/* Typography Improvements */
.card-content[b-am9s4tpj98] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.name-section[b-am9s4tpj98] {
    border-left: 3px solid var(--brand-main);
    padding-left: 12px;
    margin-bottom: 0.75rem;
}

.item-name[b-am9s4tpj98] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.025em;
}

.item-remark[b-am9s4tpj98] {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer layout */
.card-footer[b-am9s4tpj98] {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-tag[b-am9s4tpj98] {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.view-link[b-am9s4tpj98] {
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Animation */
@keyframes slideInUp-b-am9s4tpj98 {
    from {
        opacity: 0;
 transform: translateY(30px) ;
    }

    to {
        opacity: 1;
 transform: translateY(0) ;
    }
}

.animate-card[b-am9s4tpj98] {
    animation: slideInUp-b-am9s4tpj98 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Animation from your existing grid */
.animate-card[b-am9s4tpj98] {
    animation: slideUp-b-am9s4tpj98 0.4s ease forwards;
    opacity: 0;
}

@keyframes slideUp-b-am9s4tpj98 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* List Item Interactions */
.custom-list-item[b-am9s4tpj98] {
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    /* Hover & Active States for Mobile */
    .custom-list-item:hover[b-am9s4tpj98] {
        background-color: #fcfcfc;
    }

    .custom-list-item:active[b-am9s4tpj98] {
        background-color: #f8f9fa;
    }

    /* Last item cleanup */
    .custom-list-item:last-child[b-am9s4tpj98] {
        border-bottom: none !important;
    }

/* Prevent long text from breaking the row */
.text-truncate[b-am9s4tpj98] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/Pages/ItemStockDetailViewPage.razor.rz.scp.css */
.bg-success-subtle[b-xxl0plpcak] {
    background-color: #d1e7dd;
}

.bg-white[b-xxl0plpcak] {
    background-color: #ffffff;
}

.btn-white[b-xxl0plpcak] {
    background: white;
    border: 1px solid #eee;
}

    .btn-white:hover[b-xxl0plpcak] {
        background: #f8f9fa;
    }

/* Ensure pricing list is readable */
.table td[b-xxl0plpcak] {
    vertical-align: top;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Modern User Pill Design */
.user-pill[b-xxl0plpcak] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 12px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

    .user-pill:hover[b-xxl0plpcak] {
        background: #fff;
        border-color: var(--brand-main);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-1px);
    }

.user-name[b-xxl0plpcak] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

/* Glowing Status Indicator */
.status-dot[b-xxl0plpcak] {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
}

    .status-dot[b-xxl0plpcak]::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: inherit;
        border-radius: inherit;
        animation: status-pulse-b-xxl0plpcak 2s ease-out infinite;
    }

@keyframes status-pulse-b-xxl0plpcak {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.bg-success-subtle[b-xxl0plpcak] {
    background-color: #dcfce7;
}

.unit-card[b-xxl0plpcak] {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f1f5f9 !important;
}

    .unit-card:hover[b-xxl0plpcak] {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.1) !important;
        border-color: var(--brand-main) !important;
    }

.bg-success-subtle[b-xxl0plpcak] {
    background-color: #dcfce7;
}

/* Maintain consistent styling for the interactive inventory rows */
.custom-list-item[b-xxl0plpcak] {
    transition: background-color 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

    .custom-list-item:active[b-xxl0plpcak] {
        background-color: #f8f9fa;
    }

/* Ensure the list doesn't feel cramped on very narrow screens */
@media (max-width: 350px) {
    .custom-list-item .gap-3[b-xxl0plpcak] {
        gap: 0.5rem !important;
    }
}

.modern-list[b-xxl0plpcak] {
    background: #fff;
    border: 1px solid #eee;
}

.list-item-row[b-xxl0plpcak] {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f8f8;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem 1.25rem;
}

    .list-item-row.is-active[b-xxl0plpcak] {
        border-bottom-color: transparent;
    }

.label-tiny[b-xxl0plpcak] {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    color: #b0b0b0;
    margin-bottom: 4px;
}

.expand-tray[b-xxl0plpcak] {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.tray-content-wrapper[b-xxl0plpcak] {
    background: #fbfbfb;
    border-radius: 12px;
    padding: 1.5rem;
}

.btn-expand-icon[b-xxl0plpcak] {
    color: #ccc;
    transition: transform 0.3s ease;
}

.is-active .btn-expand-icon[b-xxl0plpcak] {
    transform: rotate(180deg);
    color: #0d6efd;
}

.sold[b-xxl0plpcak] {
    background: var(--brand-accent);
}
/* /Components/Pages/LicenseExpiringPage.razor.rz.scp.css */
.bg-danger-subtle[b-g9dn1j5hc7] {
    background-color: rgba(225, 29, 72, 0.1);
}

.bg-warning-subtle[b-g9dn1j5hc7] {
    background-color: rgba(255, 193, 7, 0.1);
}

/* Desktop Table Styles */
.desktop-table[b-g9dn1j5hc7] {
    background: #fff;
    border: 1px solid #eee;
}

.table-row:hover[b-g9dn1j5hc7] {
    background-color: #fff9fa !important;
}

.unit-box[b-g9dn1j5hc7] {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

    .unit-box img[b-g9dn1j5hc7] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.btn-soft-danger[b-g9dn1j5hc7] {
    background: rgba(225, 29, 72, 0.08);
    color: var(--brand-main);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
}

    .btn-soft-danger:hover[b-g9dn1j5hc7] {
        background: var(--brand-main);
        color: #fff;
    }

/* Mobile Card Styles */
.status-line[b-g9dn1j5hc7] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.mobile-img-box[b-g9dn1j5hc7] {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border: 1px solid #eee;
}

    .mobile-img-box img[b-g9dn1j5hc7] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* General Helpers */
.transition-all[b-g9dn1j5hc7] {
    transition: all 0.2s ease-in-out;
}

.bg-danger-subtle[b-g9dn1j5hc7] {
    background-color: rgba(225, 29, 72, 0.1) !important;
}

.btn-icon-only[b-g9dn1j5hc7] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* /Components/Pages/LicenseneedToPaySaleListPage.razor.rz.scp.css */
.animate-fade-in[b-skdv5i367h] {
    animation: fadeIn-b-skdv5i367h 0.3s ease;
}

@keyframes fadeIn-b-skdv5i367h {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-warning-subtle[b-skdv5i367h] {
    background-color: #fff3cd;
}

.bg-success-subtle[b-skdv5i367h] {
    background-color: #d1e7dd;
}

.bg-danger-subtle[b-skdv5i367h] {
    background-color: #f8d7da;
}

/* Add a subtle separation for table rows if keeping the desktop view */
.border-bottom-light[b-skdv5i367h] {
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Smooth transition for mobile cards */
.card[b-skdv5i367h] {
    transition: transform 0.2s ease;
}

    .card:active[b-skdv5i367h] {
    }

/* Styling for the sales list items */
.custom-list-item[b-skdv5i367h] {
    transition: background-color 0.15s ease, transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}

    /* Row-wide click feedback */
    .custom-list-item:active[b-skdv5i367h] {
        background-color: #f8f9fa;
    }

/* Ensure long customer names or IDs don't push content off-screen */
.text-truncate[b-skdv5i367h] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Styling the radio buttons to look like pills */
.btn-check:checked + .btn-outline-danger[b-skdv5i367h] {
    background-color: var(--brand-main) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.2);
}

.bg-light-hover:hover[b-skdv5i367h] {
    background-color: #f8f9fa !important;
}

.modal-body.custom-scrollbar[b-skdv5i367h]::-webkit-scrollbar {
    width: 4px;
}

.modal-body.custom-scrollbar[b-skdv5i367h]::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}
/* /Components/Pages/LoginPage.razor.rz.scp.css */
/* Eye-Friendly Red Gradient Background */
.login-wrapper[b-ytdtw1nvqq] {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.login-card[b-ytdtw1nvqq] {
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85); /* Glass effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.logo-container[b-ytdtw1nvqq] {
    width: 85px;
    height: 85px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.logo-img[b-ytdtw1nvqq] {
    width: 65px;
    height: auto;
}

.business-title[b-ytdtw1nvqq] {
    font-size: 26px;
    font-weight: 800;
    color: #4a3321;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.input-group-custom[b-ytdtw1nvqq] {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.field-label[b-ytdtw1nvqq] {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    margin-left: 5px;
}

.modern-input[b-ytdtw1nvqq] {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
    outline: none;
}

    .modern-input:focus[b-ytdtw1nvqq] {
        border-color: #a17047;
        box-shadow: 0 0 0 4px rgba(161, 112, 71, 0.1);
    }

.login-btn[b-ytdtw1nvqq] {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #a17047; /* Primary Brand Color */
    color: white;
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-btn:hover[b-ytdtw1nvqq] {
        background: #8b5d3a;
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(161, 112, 71, 0.3);
    }

    .login-btn:active[b-ytdtw1nvqq] {
        transform: translateY(0);
    }

    .login-btn:disabled[b-ytdtw1nvqq] {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
    }

/* For small mobile devices */
@media (max-width: 400px) {
    .login-card[b-ytdtw1nvqq] {
        padding: 30px 20px;
    }
}

/* Floating Balloons */
.balloon[b-ytdtw1nvqq] {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.4;
    animation: float-b-ytdtw1nvqq 8s infinite ease-in-out;
}

.balloon-1[b-ytdtw1nvqq] {
    width: 300px;
    height: 300px;
    background: #ff8a80; /* Soft coral red */
    top: -50px;
    left: -50px;
}

.balloon-2[b-ytdtw1nvqq] {
    width: 250px;
    height: 250px;
    background: #ff5252; /* Vibrant but soft red */
    bottom: -30px;
    right: -30px;
    animation-delay: -4s;
}

@keyframes float-b-ytdtw1nvqq {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }
}

/* Card Improvements */
.login-card[b-ytdtw1nvqq] {
    position: relative;
    z-index: 1; /* Stay above balloons */
    max-width: 380px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 45px 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Button & Input refinements for "Eye Comfort" */
.modern-input[b-ytdtw1nvqq] {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 0.3s;
}

    .modern-input:focus[b-ytdtw1nvqq] {
        border-color: #d32f2f;
        outline: none;
    }

.login-btn[b-ytdtw1nvqq] {
    background: #d32f2f; /* Deep, professional red */
    transition: background 0.3s, transform 0.2s;
}

    .login-btn:hover[b-ytdtw1nvqq] {
        background: #b71c1c;
    }
/* /Components/Pages/NotificationHistoryPage.razor.rz.scp.css */
.notification-card[b-db5fy42c1j] {
    transition: transform 0.2s, background-color 0.2s;
}

    .notification-card:hover[b-db5fy42c1j] {
        background-color: #fdfdfd;
    }

.bg-light[b-db5fy42c1j] {
    background-color: #f8fafc !important;
}

/* Truncate text to exactly 2 lines */
.text-truncate-2[b-db5fy42c1j] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ensure consistent spacing for the list group */
.list-group-item:last-child[b-db5fy42c1j] {
    border-bottom: none !important;
}

/* Active feedback for touch */
.custom-list-item:active[b-db5fy42c1j] {
    background-color: #f1f5f9 !important;
    transition: background-color 0.1s ease;
}
/* /Components/Pages/PriceTypeListPage.razor.rz.scp.css */
.card[b-78x6swgen8] {
    transition: all 0.2s ease;
    border: 1px solid #f1f5f9 !important;
}

    .card:active[b-78x6swgen8] {
        background-color: #fafbfc;
    }

.bg-success-subtle[b-78x6swgen8] {
    background-color: #e6fcf5;
}

/* Button sizing for list-item style */
.action-btn[b-78x6swgen8] {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

/* Row-style list item styling */
.custom-list-item[b-78x6swgen8] {
    transition: background-color 0.15s ease, transform 0.1s ease;
}

    /* Mobile tap effect */
    .custom-list-item:active[b-78x6swgen8] {
        background-color: #fcfcfc;
    }

    /* Remove border from last item in the list group */
    .custom-list-item:last-child[b-78x6swgen8] {
        border-bottom: none !important;
    }

/* Ensure text doesn't break layout if the name is too long */
.text-truncate[b-78x6swgen8] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/Pages/ProfilePage.razor.rz.scp.css */
.profile-page[b-6qdzsm4u39] {
    animation: pageFadeIn-b-6qdzsm4u39 .45s ease both;
}

.profile-card[b-6qdzsm4u39] {
    position: relative;
    /* CHANGE 1: Remove overflow: hidden so the dialog can 'leak' out if needed */
    overflow: visible;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
    backdrop-filter: blur(18px);
    /* CHANGE 2: Ensure the animation finishes and doesn't leave a transform trap */
    animation: cardEnter-b-6qdzsm4u39 .55s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes cardEnter-b-6qdzsm4u39 {
    from {
        opacity: 0;
 transform: translateY(18px) ;
    }
    /* CHANGE 3: By ending at 99%, and setting 100% to transform: none, 
       we 'release' the fixed element from the stacking context trap.
    */
    99% {
        opacity: 1;
 transform: translateY(0) ;
    }

    100% {
        opacity: 1;
        transform: none; /* This kills the stacking context trap */
    }
}

.profile-hero[b-6qdzsm4u39] {
    position: relative;
    height: 150px;
    background: radial-gradient(circle at 25% 10%, var(--brand-main), transparent 32%), linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark) 48%, var(--brand-main) 100%);
}

.profile-glow[b-6qdzsm4u39] {
    position: absolute;
    inset: auto -40px -80px -40px;
    height: 140px;
    background: rgba(255, 255, 255, .18);
    filter: blur(28px);
}

.profile-avatar-wrap[b-6qdzsm4u39] {
    position: absolute;
    left: 50%;
    bottom: -56px;
    transform: translateX(-50%);
    padding: 6px;
    background-color: transparent;
    animation: avatarPop-b-6qdzsm4u39 .55s .16s cubic-bezier(.2, .9, .25, 1.2) both;
}

.profile-avatar[b-6qdzsm4u39] {
    display: block;
    border-radius: 50%;
}

.profile-content[b-6qdzsm4u39] {
    padding: 76px 32px 32px;
}

.profile-intro[b-6qdzsm4u39] {
    margin-bottom: 24px;
}

    .profile-intro h4[b-6qdzsm4u39] {
        margin: 0 0 8px;
        color: #172033;
        font-weight: 800;
        letter-spacing: 0;
    }

.profile-badge[b-6qdzsm4u39] {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid rgba(74, 116, 175, .18);
    border-radius: 999px;
    color: #3569ad;
    background: #f4f8ff;
    font-size: .82rem;
    font-weight: 700;
}

.profile-section[b-6qdzsm4u39] {
    display: grid;
    gap: 14px;
}

.profile-info-item[b-6qdzsm4u39] {
    padding: 16px 18px;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 18px;
    background: #f8fafc;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .profile-info-item:hover[b-6qdzsm4u39] {
        transform: translateY(-2px);
        background: #fff;
        box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    }

    .profile-info-item span[b-6qdzsm4u39] {
        display: block;
        margin-bottom: 5px;
        color: #64748b;
        font-size: .72rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .profile-info-item strong[b-6qdzsm4u39] {
        color: #172033;
        font-size: .98rem;
        font-weight: 700;
    }

.profile-actions[b-6qdzsm4u39] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

    .profile-actions .btn[b-6qdzsm4u39] {
        min-height: 44px;
        font-weight: 700;
    }

.btn-soft-danger[b-6qdzsm4u39] {
    color: #d63f52;
    background: #fff1f3;
    border: 1px solid #ffd6dc;
}

    .btn-soft-danger:hover[b-6qdzsm4u39] {
        color: #fff;
        background: #d63f52;
        border-color: #d63f52;
    }

.form-control[b-6qdzsm4u39] {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    background-color: #f8fafc;
}

    .form-control:focus[b-6qdzsm4u39] {
        border-color: #5f8fd9;
        background-color: #fff;
        box-shadow: 0 0 0 .25rem rgba(95, 143, 217, .16);
    }

.profile-loading[b-6qdzsm4u39] {
    display: grid;
    min-height: 320px;
    place-items: center;
}

.appear-up[b-6qdzsm4u39] {
    animation: appearUp-b-6qdzsm4u39 .35s ease both;
}

@keyframes pageFadeIn-b-6qdzsm4u39 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes avatarPop-b-6qdzsm4u39 {
    from {
        opacity: 0;
 transform: translateX(-50%) translateY(12px) ;
    }

    to {
        opacity: 1;
 transform: translateX(-50%) translateY(0) ;
    }
}

@keyframes appearUp-b-6qdzsm4u39 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .profile-content[b-6qdzsm4u39] {
        padding: 76px 20px 24px;
    }

    .profile-actions[b-6qdzsm4u39] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/PropertyListPage.razor.rz.scp.css */
/* Mobile-specific refinements */
.card[b-uwjf9xed3w] {
    transition: background-color 0.15s ease;
}

    .card:active[b-uwjf9xed3w] {
        background-color: #f8fafc;
    }

/* Icon styling for the circular buttons */
.btn-light i[b-uwjf9xed3w] {
    font-size: 0.9rem;
}

/* Circular Action Buttons */
.action-btn[b-uwjf9xed3w] {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

/* Row-style list item styling */
.custom-list-item[b-uwjf9xed3w] {
    transition: background-color 0.15s ease, transform 0.1s ease;
}

    /* Interaction feedback for mobile touch */
    .custom-list-item:active[b-uwjf9xed3w] {
        background-color: #f8f9fa;
    }

    /* Remove border from last item in the list group */
    .custom-list-item:last-child[b-uwjf9xed3w] {
        border-bottom: none !important;
    }

/* Prevent long names from breaking the UI */
.text-truncate[b-uwjf9xed3w] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/Pages/SaleInvoicePrintPage.razor.rz.scp.css */
@page {
    size: A4 portrait;
    margin: 0;
}

*[b-gt4h3c0bg5] {
    box-sizing: border-box;
}

.invoice-state[b-gt4h3c0bg5] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    color: #282b2f;
    text-align: center;
    font-family: "Myanmar Text", "Pyidaungsu", Arial, sans-serif;
}

.invoice-error i[b-gt4h3c0bg5] {
    color: #b5121b;
    font-size: 42px;
}

.invoice-error h3[b-gt4h3c0bg5],
.invoice-error p[b-gt4h3c0bg5] {
    margin: 0;
}

.invoice-shell[b-gt4h3c0bg5] {
    min-height: 100vh;
    padding: 22px;
    background: #eceff1;
    color: #202326;
    font-family: "Myanmar Text", "Pyidaungsu", Arial, sans-serif;
}

.print-toolbar[b-gt4h3c0bg5] {
    width: min(210mm, 100%);
    display: flex;
    justify-content: flex-end;
    margin: 0 auto 14px;
}

.print-action[b-gt4h3c0bg5] {
    border: 0;
    border-radius: 6px;
    padding: 10px 18px;
    background: #b5121b;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.print-action i[b-gt4h3c0bg5] {
    margin-right: 8px;
}

.invoice-page[b-gt4h3c0bg5] {
    position: relative;
    width: 210mm;
    min-height: 297mm;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.invoice-background[b-gt4h3c0bg5] {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.invoice-hero[b-gt4h3c0bg5],
.invoice-content[b-gt4h3c0bg5],
.invoice-footer[b-gt4h3c0bg5] {
    position: relative;
    z-index: 1;
}

.invoice-hero[b-gt4h3c0bg5] {
    min-height: 48mm;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10mm;
    padding: 8mm 12mm 6mm;
    background: transparent;
    color: #202326;
}

.brand-lockup[b-gt4h3c0bg5] {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 5mm;
}

.company-logo-wrap[b-gt4h3c0bg5] {
    width: 22mm;
    height: 22mm;
    flex: 0 0 22mm;
    padding: 1.5mm;
    border-radius: 6px;
    background: #fff;
}

.company-logo[b-gt4h3c0bg5] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-title-wrap[b-gt4h3c0bg5] {
    min-width: 0;
}

.company-title-wrap h1[b-gt4h3c0bg5] {
    margin: 0;
    color: #202326;
    font-size: 20pt;
    line-height: 1.25;
    font-weight: 900;
}

.company-subtitle[b-gt4h3c0bg5] {
    margin-top: 3px;
    color: #62676c;
    font-size: 9.5pt;
    font-weight: 600;
}

.invoice-heading[b-gt4h3c0bg5] {
    flex: 0 0 auto;
    text-align: right;
    line-height: 1;
}

.invoice-heading > div[b-gt4h3c0bg5] {
    font-family: Arial, sans-serif;
    font-size: 28pt;
    font-weight: 400;
    letter-spacing: 0;
}

.invoice-heading[b-gt4h3c0bg5]::after {
    content: "";
    display: block;
    width: 12mm;
    margin: 2.5mm 0 0 auto;
    border-top: 2px solid #b5121b;
}

.invoice-heading small[b-gt4h3c0bg5] {
    display: block;
    margin-top: 3mm;
    color: #8f0f16;
    font-size: 8.5pt;
    font-weight: 700;
}

.invoice-content[b-gt4h3c0bg5] {
    flex: 1;
    padding: 5mm 12mm 4mm;
}

.overview-label[b-gt4h3c0bg5],
.section-heading[b-gt4h3c0bg5] {
    color: #8f0f16;
    font-family: Arial, sans-serif;
    font-size: 9.5pt;
    font-weight: 800;
    letter-spacing: 0;
}

.invoice-overview[b-gt4h3c0bg5] {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(50mm, 0.8fr);
    gap: 8mm;
    align-items: start;
}

.showroom-card[b-gt4h3c0bg5] {
    min-width: 0;
}

.showroom-addresses[b-gt4h3c0bg5] {
    min-width: 0;
    font-size: 8.5pt;
    line-height: 1.45;
}

.address-line[b-gt4h3c0bg5] {
    margin-top: 1.5mm;
    font-weight: 700;
}

.second-address[b-gt4h3c0bg5] {
    margin-top: 2mm;
}

.phone-line[b-gt4h3c0bg5] {
    color: #686d72;
    font-size: 8.5pt;
}

.invoice-meta dl[b-gt4h3c0bg5],
.detail-list[b-gt4h3c0bg5] {
    margin: 2.2mm 0 0;
}

.invoice-meta dl > div[b-gt4h3c0bg5],
.detail-list > div[b-gt4h3c0bg5] {
    display: grid;
    grid-template-columns: 24mm minmax(0, 1fr);
    gap: 2mm;
    margin-bottom: 1.6mm;
    align-items: baseline;
}

.invoice-meta dt[b-gt4h3c0bg5],
.detail-list dt[b-gt4h3c0bg5],
.invoice-meta dd[b-gt4h3c0bg5],
.detail-list dd[b-gt4h3c0bg5] {
    margin: 0;
    font-size: 9.5pt;
}

.invoice-meta dt[b-gt4h3c0bg5],
.detail-list dt[b-gt4h3c0bg5] {
    color: #656a6f;
}

.invoice-meta dd[b-gt4h3c0bg5] {
    text-align: right;
    font-weight: 700;
}

.party-grid[b-gt4h3c0bg5] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12mm;
    margin-top: 7mm;
}

.party-block[b-gt4h3c0bg5] {
    min-width: 0;
}

.party-block h2[b-gt4h3c0bg5] {
    margin: 2.2mm 0 0;
    color: #17191b;
    font-size: 12pt;
    line-height: 1.3;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.detail-list > div[b-gt4h3c0bg5] {
    grid-template-columns: 19mm minmax(0, 1fr);
}

.detail-list dd[b-gt4h3c0bg5] {
    overflow-wrap: anywhere;
}

.sale-lines[b-gt4h3c0bg5] {
    margin-top: 7mm;
}

.sale-line-header[b-gt4h3c0bg5],
.sale-line-row[b-gt4h3c0bg5] {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(26mm, 1.1fr) minmax(23mm, .9fr) minmax(21mm, .8fr) minmax(20mm, .8fr);
    align-items: stretch;
}

.sale-line-header[b-gt4h3c0bg5] {
    min-height: 10mm;
    border-radius: 6px;
    overflow: hidden;
    border: 0;
    background: #b5121b;
    color: #fff;
}

.sale-line-header > div[b-gt4h3c0bg5] {
    display: flex;
    align-items: center;
    padding: 2mm 2.5mm;
    font-family: Arial, sans-serif;
    font-size: 8.5pt;
    font-weight: 700;
}

.sale-line-header > div:not(:first-child)[b-gt4h3c0bg5],
.sale-line-row > div:not(:first-child)[b-gt4h3c0bg5] {
    justify-content: flex-end;
    text-align: right;
}

.sale-line-row[b-gt4h3c0bg5] {
    min-height: 28mm;
    border-bottom: 1px solid #b8bbbe;
    background: rgba(238, 239, 240, 0.82);
}

.sale-line-row > div[b-gt4h3c0bg5] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3mm 2.5mm;
    font-size: 9.5pt;
    overflow-wrap: anywhere;
}

.description-cell strong[b-gt4h3c0bg5] {
    font-size: 11pt;
}

.description-cell span[b-gt4h3c0bg5] {
    margin-top: 1mm;
    color: #686d72;
    font-size: 9pt;
}

.money-cell[b-gt4h3c0bg5] {
    color: #8f0f16;
    font-size: 10.5pt !important;
    font-weight: 800;
}

.money-cell small[b-gt4h3c0bg5] {
    color: #686d72;
    font-size: 7.5pt;
    font-weight: 600;
}

.remarks-panel[b-gt4h3c0bg5],
.signature-section[b-gt4h3c0bg5] {
    margin-top: 6mm;
}

.remarks-panel[b-gt4h3c0bg5] {
    min-height: 27mm;
    padding: 3.5mm 0;
    border: 0;
    border-top: 1.5px solid #b5121b;
    border-radius: 0;
    background: transparent;
}

.remarks-content[b-gt4h3c0bg5] {
    min-height: 16mm;
    margin-top: 2mm;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    font-size: 9.5pt;
    line-height: 1.5;
}

.signature-grid[b-gt4h3c0bg5] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6mm;
    margin-top: 3mm;
    page-break-inside: avoid;
}

.signature-box[b-gt4h3c0bg5] {
    min-width: 0;
    text-align: center;
}

.signature-space[b-gt4h3c0bg5] {
    height: 16mm;
}

.signature-line[b-gt4h3c0bg5] {
    border-top: 1px solid #555b60;
}

.signature-title[b-gt4h3c0bg5] {
    padding-top: 2mm;
    font-size: 9pt;
    font-weight: 700;
}

.invoice-footer[b-gt4h3c0bg5] {
    min-height: 20mm;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8mm;
    padding: 3mm 12mm;
    background: transparent;
    color: #7d0d15;
}

.invoice-footer > div[b-gt4h3c0bg5] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1mm;
}

.invoice-footer strong[b-gt4h3c0bg5] {
    font-family: Arial, sans-serif;
    font-size: 10.5pt;
}

.invoice-footer span[b-gt4h3c0bg5] {
    color: #62676c;
    font-size: 8.5pt;
}

.invoice-footer img[b-gt4h3c0bg5] {
    width: 15mm;
    height: 15mm;
    padding: 1mm;
    border-radius: 4px;
    object-fit: contain;
    background: #fff;
}

@media (max-width: 820px) {
    .invoice-shell[b-gt4h3c0bg5] {
        padding: 10px;
        overflow-x: auto;
    }

    .invoice-page[b-gt4h3c0bg5] {
        width: 100%;
        min-height: 0;
    }

    .invoice-hero[b-gt4h3c0bg5] {
        padding-right: 5mm;
        padding-left: 5mm;
    }

    .invoice-content[b-gt4h3c0bg5] {
        padding-right: 5mm;
        padding-left: 5mm;
    }
}

@media print {
    .no-print[b-gt4h3c0bg5] {
        display: none !important;
    }

    .invoice-shell[b-gt4h3c0bg5] {
        min-height: 0;
        padding: 0;
        background: #fff;
    }

    .invoice-page[b-gt4h3c0bg5] {
        width: 210mm;
        height: 297mm;
        min-height: 297mm;
        margin: 0;
        box-shadow: none;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .invoice-hero[b-gt4h3c0bg5] {
        padding: 8mm 12mm 6mm;
    }

    .invoice-content[b-gt4h3c0bg5] {
        padding: 5mm 12mm 4mm;
    }
}
/* /Components/Pages/SaleListPage.razor.rz.scp.css */
.animate-fade-in[b-6h121qtgcg] {
    animation: fadeIn-b-6h121qtgcg 0.3s ease;
}

@keyframes fadeIn-b-6h121qtgcg {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-warning-subtle[b-6h121qtgcg] {
    background-color: #fff3cd;
}

.bg-success-subtle[b-6h121qtgcg] {
    background-color: #d1e7dd;
}

.bg-danger-subtle[b-6h121qtgcg] {
    background-color: #f8d7da;
}

/* Add a subtle separation for table rows if keeping the desktop view */
.border-bottom-light[b-6h121qtgcg] {
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Smooth transition for mobile cards */
.card[b-6h121qtgcg] {
    transition: transform 0.2s ease;
}

    .card:active[b-6h121qtgcg] {
    }

/* Styling for the sales list items */
.custom-list-item[b-6h121qtgcg] {
    transition: background-color 0.15s ease, transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}

    /* Row-wide click feedback */
    .custom-list-item:active[b-6h121qtgcg] {
        background-color: #f8f9fa;
    }

/* Ensure long customer names or IDs don't push content off-screen */
.text-truncate[b-6h121qtgcg] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Styling the radio buttons to look like pills */
.btn-check:checked + .btn-outline-danger[b-6h121qtgcg] {
    background-color: var(--brand-main) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.2);
}

.bg-light-hover:hover[b-6h121qtgcg] {
    background-color: #f8f9fa !important;
}

.modal-body.custom-scrollbar[b-6h121qtgcg]::-webkit-scrollbar {
    width: 4px;
}

.modal-body.custom-scrollbar[b-6h121qtgcg]::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}
/* /Components/Pages/SaleReportPage.razor.rz.scp.css */
.animate-fade-in[b-q9xapym5i4] {
    animation: fadeIn-b-q9xapym5i4 0.3s ease;
}

@keyframes fadeIn-b-q9xapym5i4 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-warning-subtle[b-q9xapym5i4] {
    background-color: #fff3cd;
}

.bg-success-subtle[b-q9xapym5i4] {
    background-color: #d1e7dd;
}

.bg-danger-subtle[b-q9xapym5i4] {
    background-color: #f8d7da;
}

/* Add a subtle separation for table rows if keeping the desktop view */
.border-bottom-light[b-q9xapym5i4] {
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Smooth transition for mobile cards */
.card[b-q9xapym5i4] {
    transition: transform 0.2s ease;
}

    .card:active[b-q9xapym5i4] {
    }

/* Styling for the sales list items */
.custom-list-item[b-q9xapym5i4] {
    transition: background-color 0.15s ease, transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}

    /* Row-wide click feedback */
    .custom-list-item:active[b-q9xapym5i4] {
        background-color: #f8f9fa;
    }

/* Ensure long customer names or IDs don't push content off-screen */
.text-truncate[b-q9xapym5i4] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Styling the radio buttons to look like pills */
.btn-check:checked + .btn-outline-danger[b-q9xapym5i4] {
    background-color: var(--brand-main) !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.2);
}

.bg-light-hover:hover[b-q9xapym5i4] {
    background-color: #f8f9fa !important;
}

.modal-body.custom-scrollbar[b-q9xapym5i4]::-webkit-scrollbar {
    width: 4px;
}

.modal-body.custom-scrollbar[b-q9xapym5i4]::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}
/* /Components/Pages/SaleRequestPage.razor.rz.scp.css */
.custom-input:focus[b-4e0g23bhwr] {
    background-color: #fff !important;
    box-shadow: 0 0 0 3px var(--brand-accent) !important;
    border: 1px solid var(--brand-main) !important;
}

.brand-btn[b-4e0g23bhwr] {
    background: linear-gradient(135deg, var(--brand-main) 0%, var(--brand-dark) 100%);
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .brand-btn:hover[b-4e0g23bhwr] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3) !important;
    }

.bg-danger-subtle[b-4e0g23bhwr] {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-success-subtle[b-4e0g23bhwr] {
    background-color: rgba(25, 135, 84, 0.1) !important;
}
/* /Components/Pages/SaleSummerizeViewPage.razor.rz.scp.css */
.cursor-pointer[b-xwy23i3noh] {
    cursor: pointer;
}

.small-label[b-xwy23i3noh] {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.x-small[b-xwy23i3noh] {
    font-size: 0.65rem;
    line-height: 1.2;
}

.animate-fade-in[b-xwy23i3noh] {
    animation: fadeIn-b-xwy23i3noh 0.2s ease-in-out;
}

@keyframes fadeIn-b-xwy23i3noh {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Pages/SettingsPage.razor.rz.scp.css */
/* Card Hover Animation */
.settings-card[b-htsbf5xkc8] {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent !important;
}

    .settings-card:hover[b-htsbf5xkc8] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
        background-color: #fff;
        border-color: var(--brand-main) !important;
    }

        .settings-card:hover .settings-icon-box[b-htsbf5xkc8] {
            background-color: var(--brand-main);
            color: white;
        }

        .settings-card:hover .ms-auto[b-htsbf5xkc8] {
            opacity: 1 !important;
            color: var(--brand-main) !important;
            transform: translateX(3px);
        }

/* Icon Box Styling */
.settings-icon-box[b-htsbf5xkc8] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
    color: #475569;
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

    /* Target the Blazor RenderFragment content */
    .settings-icon-box i[b-htsbf5xkc8] {
        display: block;
    }


.maintenance-card[b-htsbf5xkc8] {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #f1f5f9 !important;
}

    .maintenance-card:hover[b-htsbf5xkc8] {
        background-color: #fafbfc;
        border-color: #dee2e6 !important;
    }

.action-icon-box[b-htsbf5xkc8] {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
}

.bg-success-subtle[b-htsbf5xkc8] {
    background-color: #e6fcf5;
}

.bg-warning-subtle[b-htsbf5xkc8] {
    background-color: #fff9db;
}

.maintenance-card[b-htsbf5xkc8] {
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent !important;
}

    .maintenance-card:hover[b-htsbf5xkc8] {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
        border-color: var(--brand-accent) !important;
    }

.action-icon-box[b-htsbf5xkc8] {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
}
/* /Components/Pages/StockLedgerListAndEntryPage.razor.rz.scp.css */
@media (max-width: 767px) {
    .card-footer .row[b-3xvc4gud5f] {
        flex-direction: column;
        text-align: center !important;
    }

    .card-footer .col-8[b-3xvc4gud5f], .card-footer .col-4[b-3xvc4gud5f] {
        width: 100%;
        text-align: center !important;
    }
}

.bg-success-subtle[b-3xvc4gud5f] {
    background-color: #d1e7dd;
}

.bg-danger-subtle[b-3xvc4gud5f] {
    background-color: #f8d7da;
}

.transition-hover:hover[b-3xvc4gud5f] {
    transform: translateY(-2px);
    transition: 0.2s;
}

/* Custom subtle colors for the badges */
.bg-success-subtle[b-3xvc4gud5f] {
    background-color: #e6fcf5;
}

.bg-danger-subtle[b-3xvc4gud5f] {
    background-color: #fff5f5;
}

/* Animation for better mobile feel */
.card[b-3xvc4gud5f] {
    transition: transform 0.1s ease;
}

    .card:active[b-3xvc4gud5f] {
        background-color: #fafafa;
    }

/* Styling for the list row items */
.custom-list-item[b-3xvc4gud5f] {
    transition: background-color 0.15s ease, transform 0.1s ease;
    -webkit-tap-highlight-color: transparent;
}

    /* Interaction feedback */
    .custom-list-item:hover[b-3xvc4gud5f] {
        background-color: #fafafa;
    }

    .custom-list-item:active[b-3xvc4gud5f] {
        background-color: #f0f0f0;
    }

    /* Remove bottom border on the final item */
    .custom-list-item:last-child[b-3xvc4gud5f] {
        border-bottom: none !important;
    }

/* Ensure SKU and Names don't break the horizontal layout */
.text-truncate[b-3xvc4gud5f] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/Pages/StockLicenseExpirePage.razor.rz.scp.css */
.stat-icon[b-uqftxokr6z] {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bg-primary-subtle[b-uqftxokr6z] {
    background-color: var(--brand-main);
}

.bg-warning-subtle[b-uqftxokr6z] {
    background-color: #fffbeb;
}

.bg-success-subtle[b-uqftxokr6z] {
    background-color: #f0fdf4;
}

.bg-danger-subtle[b-uqftxokr6z] {
    background-color: #fef2f2;
}

.avatar-sm[b-uqftxokr6z] {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.btn-icon-sm[b-uqftxokr6z] {
    border: none;
    background: #f8fafc;
    color: #64748b;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    transition: all 0.2s;
}

    .btn-icon-sm:hover[b-uqftxokr6z] {
        background: #e2e8f0;
        color: #0f172a;
    }

.border-bottom-light[b-uqftxokr6z] {
    border-bottom: 1px solid #f1f5f9;
}

.tiny[b-uqftxokr6z] {
    font-size: 0.6rem;
}

.uppercase[b-uqftxokr6z] {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.animate-pulse[b-uqftxokr6z] {
    animation: pulse-b-uqftxokr6z 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-b-uqftxokr6z {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.rank-number[b-uqftxokr6z] {
    width: 28px;
    height: 28px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.75rem;
    color: #64748b;
}

.list-group-item:nth-child(1) .rank-number[b-uqftxokr6z] {
    background: #fef3c7;
    color: #d97706;
}
/* Gold for #1 */
/* /Components/Pages/StockTransferListPage.razor.rz.scp.css */
/* --- TABLE STYLING DETAILS UX REFINEMENT --- */
.custom-transfer-table th[b-4l4zj39sme] {
    padding-top: 16px;
    padding-bottom: 16px;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #f1f5f9;
}

.custom-transfer-table td[b-4l4zj39sme] {
    padding-top: 18px;
    padding-bottom: 18px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.status-pill[b-4l4zj39sme] {
    padding: 6px 14px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
}

/* Custom soft color indicators overrides */
.text-warning-dark[b-4l4zj39sme] {
    color: #b45309;
    background: #fef3c7;
}

.text-success-dark[b-4l4zj39sme] {
    color: #15803d;
    background: #dcfce7;
}

.text-danger-dark[b-4l4zj39sme] {
    color: #b91c1c;
    background: #fee2e2;
}

.btn-soft-success[b-4l4zj39sme] {
    color: #16a34a;
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
}

    .btn-soft-success:hover[b-4l4zj39sme] {
        color: #ffffff;
        background-color: #16a34a;
    }

.btn-soft-danger[b-4l4zj39sme] {
    color: #dc2626;
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
}

    .btn-soft-danger:hover[b-4l4zj39sme] {
        color: #ffffff;
        background-color: #dc2626;
    }

/* --- THE FULLSCREEN PORTAL LAYER BREAKOUT IMMUNIZATION (IMMUNE TO TRANSFORMS) --- */
.fullscreen-portal[b-4l4zj39sme] {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    transform: none !important;
    perspective: none !important;
    filter: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000 !important;
    padding: 20px;
}

.portal-overlay[b-4l4zj39sme] {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    z-index: -1;
}

.portal-window[b-4l4zj39sme] {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    padding: 32px;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: portalSlideUpIn-b-4l4zj39sme 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.entry-window-width[b-4l4zj39sme] {
    max-width: 480px !important;
}

/* --- INTEGRATED PRESET ACTION BOX CARDS --- */
.custom-input-group[b-4l4zj39sme] {
    background: #f8fafc;
    padding: 14px 18px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.input-label[b-4l4zj39sme] {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.custom-form-control[b-4l4zj39sme] {
    background: transparent !important;
    padding: 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: #1e293b;
    box-shadow: none !important;
    height: auto;
}

    .custom-form-control:focus[b-4l4zj39sme] {
        outline: none;
    }

/* Dynamic parent layout breakout hook rules to prevent component clipping layers */
.mybody:has(.fullscreen-portal)[b-4l4zj39sme],
.card:has(.fullscreen-portal)[b-4l4zj39sme] {
    overflow: visible !important;
    transform: none !important;
    animation: none !important;
}

@keyframes portalSlideUpIn-b-4l4zj39sme {
    from {
 transform: translateY(15px);
        opacity: 0;
    }

    to {
 transform: translateY(0);
        opacity: 1;
    }
}
/* /Components/Pages/UserAccountListAndEntryPage.razor.rz.scp.css */
.bg-soft-blue[b-mnhre05sla] {
    background: #eef4ff;
}

.transition-hover[b-mnhre05sla] {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .transition-hover:hover[b-mnhre05sla] {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    }

.form-control:focus[b-mnhre05sla], .form-select:focus[b-mnhre05sla] {
    box-shadow: none;
    background: #e9ecef;
}

.action-btn[b-mnhre05sla] {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

.custom-list-item[b-mnhre05sla] {
    transition: background-color 0.15s ease;
}

    .custom-list-item:hover[b-mnhre05sla] {
        background-color: #fafafa;
    }

    /* For mobile touch feedback */
    .custom-list-item:active[b-mnhre05sla] {
        background-color: #f0f0f0;
    }

.text-truncate[b-mnhre05sla] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/Pages/UserTypeListAndEntryPage.razor.rz.scp.css */
/* Prevent card from looking too stretched on large phones */
.card[b-ap82c50u0t] {
    max-width: 100%;
    transition: transform 0.1s ease;
}

    .card:active[b-ap82c50u0t] {
    }

/* Custom sizing for the icon-only mobile buttons */
.action-btn[b-ap82c50u0t] {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
}

/* Subtle tap feedback for the list item */
.custom-list-item[b-ap82c50u0t] {
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .custom-list-item:active[b-ap82c50u0t] {
        background-color: #f8f9fa; /* Light grey on tap */
    }

    /* Ensure the last item doesn't have a lingering bottom border */
    .custom-list-item:last-child[b-ap82c50u0t] {
        border-bottom: none !important;
    }

.modern-input[b-ap82c50u0t] {
    border-radius: 12px;
    font-size: 1rem;
    padding: 12px 16px;
    transition: all 0.2s ease;
}

    .modern-input:focus[b-ap82c50u0t] {
        background-color: #ffffff !important;
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1) !important;
    }

.price-chip[b-ap82c50u0t] {
    padding: 8px 16px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    user-select: none;
}

    .price-chip:hover[b-ap82c50u0t] {
        border-color: #2563eb;
        background: #f1f5f9;
    }

    .price-chip.active[b-ap82c50u0t] {
        background: #2563eb;
        color: white;
        border-color: #2563eb;
        box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
    }

.permission-card[b-ap82c50u0t] {
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.form-check-input:checked[b-ap82c50u0t] {
    background-color: #2563eb;
    border-color: #2563eb;
}

.shadow-inner[b-ap82c50u0t] {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}
/* /Components/Pages/VarientListAndEntryPage.razor.rz.scp.css */
/* Styling for a modern mobile app feel */
.card[b-dyzrrxb1av] {
    transition: transform 0.1s ease, background-color 0.1s ease;
    border: 1px solid #f1f5f9 !important;
}

    .card:active[b-dyzrrxb1av] {
        background-color: #fafafa;
    }

.bg-primary-subtle[b-dyzrrxb1av] {
    background-color: var(--brand-main);
}

/* Fixed-size circular action buttons for mobile */
.action-btn[b-dyzrrxb1av] {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

/* Base style for the interactive list row */
.custom-list-item[b-dyzrrxb1av] {
    transition: background-color 0.15s ease, transform 0.1s ease;
}

    /* Subtle feedback when the user taps the item */
    .custom-list-item:active[b-dyzrrxb1av] {
        background-color: #f8f9fa;
    }

    /* Clean up the bottom border on the last item */
    .custom-list-item:last-child[b-dyzrrxb1av] {
        border-bottom: none !important;
    }

/* Keep the UI tight even with long variant names */
.text-truncate[b-dyzrrxb1av] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
