/* /Components/BidChatrCard.razor.rz.scp.css */
.cardOrganisationRowCard[b-ijdkdfips6] {
    width: 16rem;
    height: 10rem;
    margin-right: 12px;
    background-image: linear-gradient(to right, white, white);
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 20px
}

    .cardOrganisationRowCard img[b-ijdkdfips6] {
        width: 200px;
        height: 150px;
        align-self: center;
        margin-top: 10px
    }

    .cardOrganisationRowCard div p[b-ijdkdfips6] {
        text-align: center;
        color: #595959;
    }

.card:hover[b-ijdkdfips6] {
    transform: scale(1.02);
}

CardItem:hover[b-ijdkdfips6] {
    transform: scale(1.02) !important;
}
/* /Components/ContactUs.razor.rz.scp.css */
.contact-modal[b-tvsocmu999] {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
    animation: modalSlideIn-b-tvsocmu999 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-container[b-tvsocmu999] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .form-container:hover[b-tvsocmu999] {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

.upload-zone[b-tvsocmu999] {
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .upload-zone[b-tvsocmu999]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .upload-zone:hover[b-tvsocmu999]::before {
        left: 100%;
    }

.drag-active[b-tvsocmu999] {
    border-color: var(--mud-palette-primary) !important;
    background: rgba(var(--mud-palette-primary-rgb), 0.05);
    transform: scale(1.02);
}

.error-shake[b-tvsocmu999] {
    animation: shake-b-tvsocmu999 0.5s ease-in-out;
}

.success-pulse[b-tvsocmu999] {
    animation: pulse-b-tvsocmu999 0.6s ease-in-out;
}

.loading-overlay[b-tvsocmu999] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 1000;
    animation: fadeIn-b-tvsocmu999 0.3s ease;
}

@keyframes modalSlideIn-b-tvsocmu999 {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

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

@keyframes shake-b-tvsocmu999 {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes pulse-b-tvsocmu999 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

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

    to {
        opacity: 1;
    }
}

.field-group[b-tvsocmu999] {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.error-message[b-tvsocmu999] {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    animation: slideDown-b-tvsocmu999 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Dialog.razor.rz.scp.css */
.loading-dialog .mud-dialog[b-dzxhe8rv6u] {
    border-radius: 16px;
    padding: 12px 10px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(17,24,39,.18);
}

.loader-wrap[b-dzxhe8rv6u] {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    align-items: center;
    padding: 14px 18px;
}

.illustration[b-dzxhe8rv6u] {
    position: relative;
    display: grid;
    place-items: center;
}

    .illustration img[b-dzxhe8rv6u] {
        width: 150px;
        max-width: 100%;
        border-radius: 8px;
        background: radial-gradient(60% 60% at 50% 40%, rgba(59,130,246,.08), transparent 65%);
        box-shadow: 0 8px 24px rgba(59,130,246,.20);
        animation: float-b-dzxhe8rv6u 4s ease-in-out infinite;
    }

.pulse[b-dzxhe8rv6u]::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 12px;
    background: radial-gradient(70% 70% at 50% 50%, rgba(59,130,246,.22), transparent 60%);
    animation: pulse-b-dzxhe8rv6u 2.2s ease-out infinite;
}


.copy[b-dzxhe8rv6u] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title[b-dzxhe8rv6u] {
    font-weight: 700;
    letter-spacing: .2px;
}

.subtitle-row[b-dzxhe8rv6u] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 4px;
}

.subtitle[b-dzxhe8rv6u] {
    display: inline;
    color: #374151;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.dots[b-dzxhe8rv6u] {
    display: inline-block;
    width: 1.2em;
    text-align: left;
    position: relative;
    top: 1px;
}

    .dots[b-dzxhe8rv6u]::after {
        content: "";
        animation: dots-b-dzxhe8rv6u 1.5s steps(4, end) infinite;
    }


.progress[b-dzxhe8rv6u] {
    height: 6px;
    border-radius: 999px;
    margin-top: 2px;
}

.hint[b-dzxhe8rv6u] {
    color: #6B7280;
    margin-top: 4px;
}

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

    50% {
        transform: translateY(-6px)
    }
}

@keyframes pulse-b-dzxhe8rv6u {
    0% {
        transform: scale(.97);
        opacity: .6
    }

    70% {
        transform: scale(1.05);
        opacity: .15
    }

    100% {
        transform: scale(.97);
        opacity: 0
    }
}

@keyframes dots-b-dzxhe8rv6u {
    0%, 20% {
        content: "";
    }

    40% {
        content: ".";
    }

    60% {
        content: "..";
    }

    80%, 100% {
        content: "...";
    }
}


@media (max-width: 640px) {
    .loader-wrap[b-dzxhe8rv6u] {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .illustration img[b-dzxhe8rv6u] {
        width: 135px;
    }

    .subtitle-row[b-dzxhe8rv6u] {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
    }
}
/* /Components/OrganistionCard.razor.rz.scp.css */
.cardOrganisationRowCard[b-pr55mamkbk] {
    width: 16rem;
    height: 10rem;
    margin-right: 12px;
    background-image: linear-gradient(to right, white, white);
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 20px
}

    .cardOrganisationRowCard img[b-pr55mamkbk] {
        width: 200px;
        height: 150px;
        align-self: center;
        margin-top: 10px
    }

    .cardOrganisationRowCard div p[b-pr55mamkbk] {
        text-align: center;
        color: #595959;
    }

.card:hover[b-pr55mamkbk] {
    transform: scale(1.02);
}

CardItem:hover[b-pr55mamkbk] {
    transform: scale(1.02) !important;
}
/* /Components/Title.razor.rz.scp.css */
.cardRowGroup[b-cwjzg7oaak] {
    height: 100%
}

.cardRow[b-cwjzg7oaak] {
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
    z-index: 55;
}

.card[b-cwjzg7oaak] {
    background-image: linear-gradient(to right, white, white);
    height: 150px;
    width: 30%;
    border-radius: 12px;
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: -70px
}

    .card:hover[b-cwjzg7oaak] {
        transform: scale(1.02);
    }

.cardTitle[b-cwjzg7oaak] {
    font-size: 18px;
    font-weight: bold;
    color: #8c8c8c
}

.card img[b-cwjzg7oaak] {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.widgetRow[b-cwjzg7oaak] {
    display: flex;
    margin-left: 15px;
    margin-top: -10px;
    overflow: hidden
}

.widgetRowCard[b-cwjzg7oaak] {
    text-align: center;
    padding: 5px;
    background-image: linear-gradient(#f2f2f2, #e6e6e6);
    height: 75px;
    width: 100px;
    margin-left: 10px;
    border-radius: 10px
}

.widgetRowCard[b-cwjzg7oaak] {
    font-size: 20px;
    color: green;
    font-weight: 400
}

.leftTitle[b-cwjzg7oaak] {
    margin-right: 100px;
    font-size: 16px;
    margin-bottom: -60px
}

.buttonStyles[b-cwjzg7oaak] {
    width: 150px;
    height: 40px;
    margin-top: 30px;
    margin-bottom: -20px;
    margin-right: 20px;
}
/* /Components/WhatsAppTemplate.razor.rz.scp.css */
.mobile-container[b-gr057rmuy7] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.phone-frame[b-gr057rmuy7] {
    width: 280px;
    height: 500px;
    border: 3px solid #333;
    border-radius: 25px;
    background: #f0f0f0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.whatsapp-header[b-gr057rmuy7] {
    background: #075e54;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
}

.whatsapp-avatar[b-gr057rmuy7] {
    width: 32px !important;
    height: 32px !important;
    background: #ddd;
}

.whatsapp-contact-name[b-gr057rmuy7] {
    color: white !important;
    font-weight: 500;
}

.whatsapp-status[b-gr057rmuy7] {
    color: #d1f4cc !important;
}

.message-container[b-gr057rmuy7] {
    flex: 1;
    padding: 16px;
    background: #e5ddd5;
    overflow-y: auto;
    max-height: 350px;
}

.message-bubble[b-gr057rmuy7] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    overflow: hidden;
}

    .message-bubble.empty-state[b-gr057rmuy7] {
        background: #f5f5f5;
        border: 2px dashed #ccc;
    }

.message-header .header-media[b-gr057rmuy7] {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.header-placeholder[b-gr057rmuy7] {
    height: 120px;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.header-text[b-gr057rmuy7] {
    padding: 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.message-body[b-gr057rmuy7] {
    padding: 12px;
}

.message-text[b-gr057rmuy7] {
    line-height: 1.4;
    white-space: pre-wrap;
}

.message-footer[b-gr057rmuy7] {
    padding: 8px 12px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.message-buttons[b-gr057rmuy7] {
    padding: 8px;
    border-top: 1px solid #e9ecef;
    max-height: 200px;
    overflow-y: auto;
}

.whatsapp-button[b-gr057rmuy7] {
    color: #075e54 !important;
    border-color: #075e54 !important;
    text-transform: none;
    font-size: 0.8rem;
}

.button-list-overlay[b-gr057rmuy7] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(280px, 90vw);
    max-height: min(350px, 70vh);
    overflow-y: auto;
    z-index: 1300;
    background: white;
    border-radius: 8px;
}

.whatsapp-input-bar[b-gr057rmuy7] {
    background: #f0f0f0;
    border-top: 1px solid #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
}

.input-field[b-gr057rmuy7] {
    flex: 1;
    background: white;
    border-radius: 20px;
    margin-right: 8px;
}

.mic-button[b-gr057rmuy7] {
    width: 40px;
    height: 40px;
    background: #075e54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (max-width: 768px) {
    .phone-frame[b-gr057rmuy7] {
        width: 250px;
        height: 450px;
    }
    
    .button-list-overlay[b-gr057rmuy7] {
        width: 95vw;
        max-height: 60vh;
    }
    
    .message-buttons[b-gr057rmuy7] {
        max-height: 150px;
    }
    
    .whatsapp-button[b-gr057rmuy7] {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}
/* /Components/WidgetCard.razor.rz.scp.css */
/* Modern Widget Card Styles */
.widget-card[b-fu7r3a57tq] {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 13px;
    margin: 5px;
    min-height: 100px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    user-select: none;
    outline: none;
    height: 150px;
}

.widget-card:focus[b-fu7r3a57tq] {
    ring: 2px solid #3b82f6;
    ring-offset: 2px;
}

.widget-card.hovered[b-fu7r3a57tq] {
    transform: translateY(-4px) scale(1.02);
   /* box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.3);*/
}

.widget-card.pressed[b-fu7r3a57tq] {
    transform: translateY(-2px) scale(1.01);
    /*box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);*/
}

.card-content[b-fu7r3a57tq] {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-header[b-fu7r3a57tq] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: rgba(0,0,0,0) !important;
    /*margin-bottom: 16px;*/
}

.icon-container[b-fu7r3a57tq] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    /*background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);*/
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: -13px;
}

.widget-card.hovered .icon-container[b-fu7r3a57tq] {
    /*background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);*/
    transform: rotate(5deg) scale(1.1);
}

.card-icon[b-fu7r3a57tq] {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.widget-card.hovered .card-icon[b-fu7r3a57tq] {
    /*filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));*/
}

.icon-glow[b-fu7r3a57tq] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.widget-card.hovered .icon-glow[b-fu7r3a57tq] {
    /*transform: translate(-50%, -50%) scale(1.5);*/
}

.arrow-indicator[b-fu7r3a57tq] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.widget-card.hovered .arrow-indicator[b-fu7r3a57tq] {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(4px);
    opacity: 1;
}

.card-body[b-fu7r3a57tq] {
    flex: 1;
    margin-bottom: 16px;
    margin-top: -8px;
}

.card-title[b-fu7r3a57tq] {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.widget-card.hovered .card-title[b-fu7r3a57tq] {
    color: #0f172a;
}

.card-description[b-fu7r3a57tq] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.widget-card.hovered .card-description[b-fu7r3a57tq] {
    /*color: #475569;*/
}

.card-footer[b-fu7r3a57tq] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.status-indicator[b-fu7r3a57tq] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.status-dot[b-fu7r3a57tq] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-b-fu7r3a57tq 2s infinite;
}

.status-active[b-fu7r3a57tq] {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-active .status-dot[b-fu7r3a57tq] {
    background: #22c55e;
}

.status-normal[b-fu7r3a57tq] {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.status-normal .status-dot[b-fu7r3a57tq] {
    background: #3b82f6;
}

.status-warning[b-fu7r3a57tq] {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.status-warning .status-dot[b-fu7r3a57tq] {
    background: #f59e0b;
}

.status-pending[b-fu7r3a57tq] {
    background: rgba(168, 85, 247, 0.1);
    color: #9333ea;
}

.status-pending .status-dot[b-fu7r3a57tq] {
    background: #a855f7;
}

.status-info[b-fu7r3a57tq] {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
}

.status-info .status-dot[b-fu7r3a57tq] {
    background: #06b6d4;
}

.card-overlay[b-fu7r3a57tq] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.widget-card.hovered .card-overlay[b-fu7r3a57tq] {
    /*opacity: 1;*/
}

/* Animations */
@keyframes pulse-b-fu7r3a57tq {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

.widget-card[b-fu7r3a57tq] {
    animation: slideInUp-b-fu7r3a57tq 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .widget-card[b-fu7r3a57tq] {
        margin: 8px;
        padding: 20px;
        min-height: 160px;
    }
    
    .card-title[b-fu7r3a57tq] {
        font-size: 18px;
    }
    
    .card-description[b-fu7r3a57tq] {
        font-size: 13px;
    }
    
    .icon-container[b-fu7r3a57tq] {
        width: 48px;
        height: 48px;
    }
    
    .card-icon[b-fu7r3a57tq] {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .widget-card[b-fu7r3a57tq] {
        margin: 6px;
        padding: 16px;
        min-height: 140px;
    }
    
    .card-header[b-fu7r3a57tq] {
        margin-bottom: 12px;
    }
    
    .card-body[b-fu7r3a57tq] {
        margin-bottom: 12px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .widget-card[b-fu7r3a57tq] {
      /*  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-color: rgba(71, 85, 105, 0.3);*/
    }
    
    .widget-card.hovered[b-fu7r3a57tq] {
        /*border-color: rgba(59, 130, 246, 0.4);*/
    }
    
    .icon-container[b-fu7r3a57tq] {
        /*background: linear-gradient(135deg, #334155 0%, #475569 100%);*/
    }
    
    .widget-card.hovered .icon-container[b-fu7r3a57tq] {
        /*background: linear-gradient(135deg, lightgrey 0%, white 100%);*/
    }
    
    .card-title[b-fu7r3a57tq] {
        color: gray;
    }
    
    .widget-card.hovered .card-title[b-fu7r3a57tq] {
        color: dimgray;
    }
    
    .card-description[b-fu7r3a57tq] {
        color: #94a3b8;
    }
    
    .widget-card.hovered .card-description[b-fu7r3a57tq] {
        color: #cbd5e1;
    }
    
    .arrow-indicator[b-fu7r3a57tq] {
        color: #64748b;
        background: rgba(100, 116, 139, 0.1);
    }
    
    .widget-card.hovered .arrow-indicator[b-fu7r3a57tq] {
        color: #60a5fa;
        background: rgba(96, 165, 250, 0.1);
    }
}

/* Legacy support for existing classes */
.cardRowGroup[b-fu7r3a57tq] {
    height: 100%;
}

.cardRow[b-fu7r3a57tq] {
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
    z-index: 55;
}

/* Accessibility improvements */
.widget-card:focus-visible[b-fu7r3a57tq] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .widget-card[b-fu7r3a57tq],
    .card-icon[b-fu7r3a57tq],
    .icon-container[b-fu7r3a57tq],
    .arrow-indicator[b-fu7r3a57tq],
    .status-indicator[b-fu7r3a57tq],
    .card-overlay[b-fu7r3a57tq] {
        transition: none;
    }
    
    .status-dot[b-fu7r3a57tq] {
        animation: none;
    }
    
    .widget-card[b-fu7r3a57tq] {
        animation: none;
    }
}
/* /Pages/Account.razor.rz.scp.css */
/* Account Page Modern Styling */
.account-container[b-mbwi0r6rnt] {
    min-height: 80vh;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    padding: 2rem 0;
    animation: fadeIn-b-mbwi0r6rnt 0.6s ease-out;
    overflow-y: auto
}

.account-content[b-mbwi0r6rnt] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    animation: slideUp-b-mbwi0r6rnt 0.8s ease-out;
}

/* Profile Header */
.profile-header[b-mbwi0r6rnt] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease-out;
    margin-top: -30px;
}

.profile-header.loaded[b-mbwi0r6rnt] {
    transform: translateY(0);
    opacity: 1;
}

.profile-avatar[b-mbwi0r6rnt] {
    position: relative;
}

.profile-avatar-img[b-mbwi0r6rnt] {
    width: 80px !important;
    height: 80px !important;
    font-size: 2rem !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse-b-mbwi0r6rnt 2s infinite;
}

.profile-info[b-mbwi0r6rnt] {
    flex: 1;
}

.profile-name[b-mbwi0r6rnt] {
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.role-chip[b-mbwi0r6rnt] {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Loading States */
.loading-overlay[b-mbwi0r6rnt] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: 20px;
}

/* Tabs */
.account-tabs[b-mbwi0r6rnt] {
    margin-top: 2rem;
}

.account-tabs .mud-tabs-toolbar[b-mbwi0r6rnt] {
    background: transparent !important;
    border-bottom: 2px solid #e0e0e0;
}

.account-tabs .mud-tab[b-mbwi0r6rnt] {
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.account-tabs .mud-tab:hover[b-mbwi0r6rnt] {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.account-tabs .mud-tab.mud-tab-active[b-mbwi0r6rnt] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Section Content */
.section-content[b-mbwi0r6rnt] {
    padding: 2rem;
    animation: fadeInUp-b-mbwi0r6rnt 0.6s ease-out;
    height: 55vh;
    overflow-y: auto;
    scrollbar-width: none;
}

/* Form Fields */
.email-field[b-mbwi0r6rnt],
.password-field[b-mbwi0r6rnt],
.detail-field[b-mbwi0r6rnt] {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.email-field:hover[b-mbwi0r6rnt],
.password-field:hover[b-mbwi0r6rnt],
.detail-field:hover[b-mbwi0r6rnt] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.email-field .mud-input-control[b-mbwi0r6rnt],
.password-field .mud-input-control[b-mbwi0r6rnt],
.detail-field .mud-input-control[b-mbwi0r6rnt] {
    border-radius: 12px;
}

/* Password Strength */
.password-strength[b-mbwi0r6rnt] {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.strength-label[b-mbwi0r6rnt] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.strength-bar[b-mbwi0r6rnt] {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.strength-fill[b-mbwi0r6rnt] {
    height: 100%;
    background: linear-gradient(90deg, #dc3545 0%, #ffc107 50%, #28a745 100%);
    border-radius: 4px;
    transition: width 0.5s ease, background-color 0.3s ease;
    animation: strengthPulse-b-mbwi0r6rnt 1s ease-in-out;
}

.strength-text[b-mbwi0r6rnt] {
    font-weight: 600;
    color: #495057;
}

/* Password Requirements */
.password-requirements[b-mbwi0r6rnt] {
    background: #e3f2fd !important;
    border: 1px solid #2196f3 !important;
    border-radius: 12px !important;
}

.requirements-list[b-mbwi0r6rnt] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    list-style: none;
}

.requirements-list li[b-mbwi0r6rnt] {
    position: relative;
    padding: 0.25rem 0;
    color: #666;
    transition: all 0.3s ease;
}

.requirements-list li[b-mbwi0r6rnt]::before {
    content: "✗";
    position: absolute;
    left: -1.5rem;
    color: #dc3545;
    font-weight: bold;
    transition: all 0.3s ease;
}

.requirements-list li.valid[b-mbwi0r6rnt] {
    color: #28a745;
    font-weight: 500;
}

.requirements-list li.valid[b-mbwi0r6rnt]::before {
    content: "✓";
    color: #28a745;
    animation: checkmark-b-mbwi0r6rnt 0.5s ease-in-out;
}

/* Buttons */
.update-button[b-mbwi0r6rnt] {
    border-radius: 12px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.update-button:hover[b-mbwi0r6rnt] {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4) !important;
}

.update-button:disabled[b-mbwi0r6rnt] {
    opacity: 0.7 !important;
    transform: none !important;
}

/* Notifications Table */
.notifications-table[b-mbwi0r6rnt] {
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.table-title[b-mbwi0r6rnt] {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #495057;
}

.notification-switch[b-mbwi0r6rnt] {
    transform: scale(1.2);
}

.save-notification-btn[b-mbwi0r6rnt] {
    transition: all 0.3s ease;
}

.save-notification-btn:hover[b-mbwi0r6rnt] {
    transform: scale(1.1);
}

/* Status Switches */
.status-switches[b-mbwi0r6rnt] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.status-switch[b-mbwi0r6rnt] {
    padding: 0.5rem 0;
}

.section-subtitle[b-mbwi0r6rnt] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Alerts */
.error-alert[b-mbwi0r6rnt] {
    border-radius: 12px !important;
    animation: shake-b-mbwi0r6rnt 0.5s ease-in-out;
}

.no-clients-alert[b-mbwi0r6rnt] {
    text-align: center;
    padding: 2rem;
    border-radius: 12px !important;
}

/* Animations */
@keyframes fadeIn-b-mbwi0r6rnt {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-mbwi0r6rnt {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp-b-mbwi0r6rnt {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-b-mbwi0r6rnt {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes strengthPulse-b-mbwi0r6rnt {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes checkmark-b-mbwi0r6rnt {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake-b-mbwi0r6rnt {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .account-container[b-mbwi0r6rnt] {
        padding: 1rem 0;
    }
    
    .account-content[b-mbwi0r6rnt] {
        margin: 1rem;
        padding: 1rem;
        border-radius: 16px;
    }
    
    .profile-header[b-mbwi0r6rnt] {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .section-content[b-mbwi0r6rnt] {
        padding: 1rem;
    }
    
    .email-field[b-mbwi0r6rnt],
    .password-field[b-mbwi0r6rnt],
    .detail-field[b-mbwi0r6rnt] {
        width: 100%;
    }
    
    .notifications-table[b-mbwi0r6rnt] {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .profile-header[b-mbwi0r6rnt] {
        padding: 1rem;
    }
    
    .profile-avatar-img[b-mbwi0r6rnt] {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .update-button[b-mbwi0r6rnt] {
        width: 100%;
        margin-top: 1rem !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .account-content[b-mbwi0r6rnt] {
        /*background: rgba(30, 30, 30, 0.95);*/
        color: #e0e0e0;
    }
    
    .password-strength[b-mbwi0r6rnt] {
        /*background: #2d2d2d;*/
        border-left-color: #667eea;
    }
    
    .status-switches[b-mbwi0r6rnt] {
        /*background: #2d2d2d;*/
        border-left-color: #28a745;
    }
    
    .strength-label[b-mbwi0r6rnt],
    .strength-text[b-mbwi0r6rnt],
    .section-subtitle[b-mbwi0r6rnt] {
        color: #e0e0e0;
    }
}
/* /Pages/AccountResetPassword.razor.rz.scp.css */
/* Account Reset Password Modern Styles */

.reset-password-container[b-wc90hjn5qb] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.reset-password-container[b-wc90hjn5qb]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: drift-b-wc90hjn5qb 30s ease-in-out infinite;
}

@keyframes drift-b-wc90hjn5qb {
    0%, 100% { transform: translateX(0px) translateY(0px); }
    25% { transform: translateX(10px) translateY(-10px); }
    50% { transform: translateX(-5px) translateY(10px); }
    75% { transform: translateX(-10px) translateY(-5px); }
}

.reset-password-card[b-wc90hjn5qb] {
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideIn-b-wc90hjn5qb 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@keyframes slideIn-b-wc90hjn5qb {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Loading Section */
.loading-section[b-wc90hjn5qb] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 40px;
}

.loading-content[b-wc90hjn5qb] {
    text-align: center;
    max-width: 400px;
}

.loading-spinner[b-wc90hjn5qb] {
    margin-bottom: 24px;
    animation: pulse-b-wc90hjn5qb 2s ease-in-out infinite;
}

@keyframes pulse-b-wc90hjn5qb {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loading-message[b-wc90hjn5qb] {
    color: #374151;
    margin-bottom: 24px;
    font-weight: 500;
}

.error-icon-large[b-wc90hjn5qb] {
    font-size: 64px;
    color: #ef4444;
    margin-bottom: 16px;
    animation: bounce-b-wc90hjn5qb 2s infinite;
}

@keyframes bounce-b-wc90hjn5qb {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Split Layout */
.split-container[b-wc90hjn5qb] {
    display: flex;
    min-height: 600px;
}

/* Illustration Section */
.illustration-section[b-wc90hjn5qb] {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px 0 0 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-content[b-wc90hjn5qb] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-image[b-wc90hjn5qb] {
    max-width: 80%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float-b-wc90hjn5qb 6s ease-in-out infinite;
}

@keyframes float-b-wc90hjn5qb {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.illustration-overlay[b-wc90hjn5qb] {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    text-align: center;
    color: white;
}

.overlay-title[b-wc90hjn5qb] {
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.overlay-subtitle[b-wc90hjn5qb] {
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.form-section[b-wc90hjn5qb] {
    flex: 1;
    background: white;
    border-radius: 0 24px 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-content[b-wc90hjn5qb] {
    width: 100%;
    max-width: 400px;
    padding: 40px;
}

.form-header[b-wc90hjn5qb] {
    text-align: center;
    margin-bottom: 32px;
}

.header-icon[b-wc90hjn5qb] {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 16px;
    animation: glow-b-wc90hjn5qb 3s ease-in-out infinite;
}

@keyframes glow-b-wc90hjn5qb {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6)); }
}

.header-title[b-wc90hjn5qb] {
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 8px;
}

.header-subtitle[b-wc90hjn5qb] {
    color: #6b7280;
    margin-bottom: 0;
}

.form-divider[b-wc90hjn5qb] {
    margin: 24px 0;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.password-form[b-wc90hjn5qb] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field[b-wc90hjn5qb] {
    transition: all 0.2s ease;
}

.form-field:focus-within[b-wc90hjn5qb] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

/* Password Requirements */
.password-requirements[b-wc90hjn5qb] {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    margin: 16px 0;
}

.requirements-title[b-wc90hjn5qb] {
    color: #374151;
    font-weight: 600;
    margin-bottom: 12px;
}

.requirements-grid[b-wc90hjn5qb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.requirement-item[b-wc90hjn5qb] {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    transition: all 0.3s ease;
    font-size: 14px;
}

.requirement-item.valid[b-wc90hjn5qb] {
    color: #059669;
    animation: checkmark-b-wc90hjn5qb 0.3s ease;
}

.requirement-item.valid .mud-icon[b-wc90hjn5qb] {
    color: #059669;
}

@keyframes checkmark-b-wc90hjn5qb {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Submit Button */
.submit-button[b-wc90hjn5qb] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.2s ease;
    margin-top: 8px;
}

.submit-button:hover:not(:disabled)[b-wc90hjn5qb] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-button:active[b-wc90hjn5qb] {
    transform: translateY(0);
}

.submit-button:disabled[b-wc90hjn5qb] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Error Alert */
.error-alert[b-wc90hjn5qb] {
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.05);
    animation: shake-b-wc90hjn5qb 0.5s ease-in-out;
}

@keyframes shake-b-wc90hjn5qb {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Retry Button */
.retry-button[b-wc90hjn5qb] {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.2s ease;
}

.retry-button:hover[b-wc90hjn5qb] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

/* Form Footer */
.form-footer[b-wc90hjn5qb] {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.footer-text[b-wc90hjn5qb] {
    color: #6b7280;
}

.login-link[b-wc90hjn5qb] {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-link:hover[b-wc90hjn5qb] {
    color: #4f46e5;
    text-decoration: underline;
}

/* Dark Mode Support */
.dark-mode .reset-password-card[b-wc90hjn5qb] {
    background: rgba(45, 45, 45, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .form-section[b-wc90hjn5qb] {
    background: var(--card-bg);
}

.dark-mode .header-title[b-wc90hjn5qb] {
    color: #f9fafb;
}

.dark-mode .header-subtitle[b-wc90hjn5qb],
.dark-mode .footer-text[b-wc90hjn5qb],
.dark-mode .loading-message[b-wc90hjn5qb] {
    color: #d1d5db;
}

.dark-mode .password-requirements[b-wc90hjn5qb] {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.dark-mode .requirements-title[b-wc90hjn5qb] {
    color: #f3f4f6;
}

.dark-mode .form-divider[b-wc90hjn5qb] {
    background: linear-gradient(90deg, transparent, #374151, transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reset-password-card[b-wc90hjn5qb] {
        max-width: 800px;
    }
    
    .illustration-image[b-wc90hjn5qb] {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .split-container[b-wc90hjn5qb] {
        flex-direction: column;
        min-height: auto;
    }
    
    .illustration-section[b-wc90hjn5qb] {
        border-radius: 24px 24px 0 0;
        min-height: 300px;
        flex: none;
    }
    
    .form-section[b-wc90hjn5qb] {
        border-radius: 0 0 24px 24px;
        flex: none;
    }
    
    .illustration-overlay[b-wc90hjn5qb] {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .overlay-title[b-wc90hjn5qb] {
        font-size: 1.5rem;
    }
    
    .overlay-subtitle[b-wc90hjn5qb] {
        font-size: 0.9rem;
    }
    
    .form-content[b-wc90hjn5qb] {
        padding: 30px 24px;
    }
    
    .requirements-grid[b-wc90hjn5qb] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .reset-password-container[b-wc90hjn5qb] {
        padding: 16px;
    }
    
    .reset-password-card[b-wc90hjn5qb] {
        border-radius: 20px;
    }
    
    .illustration-section[b-wc90hjn5qb] {
        border-radius: 20px 20px 0 0;
        min-height: 250px;
    }
    
    .form-section[b-wc90hjn5qb] {
        border-radius: 0 0 20px 20px;
    }
    
    .form-content[b-wc90hjn5qb] {
        padding: 24px 20px;
    }
    
    .header-icon[b-wc90hjn5qb] {
        font-size: 40px;
    }
    
    .header-title[b-wc90hjn5qb] {
        font-size: 1.5rem;
    }
}

/* Loading States */
.submit-button .mud-progress-circular[b-wc90hjn5qb] {
    margin-right: 8px;
}

/* Focus States */
.submit-button:focus[b-wc90hjn5qb],
.retry-button:focus[b-wc90hjn5qb] {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *[b-wc90hjn5qb] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .reset-password-card[b-wc90hjn5qb] {
        border: 2px solid #000;
    }
    
    .submit-button[b-wc90hjn5qb] {
        background: #000;
        color: #fff;
    }
    
    .login-link[b-wc90hjn5qb] {
        color: #0000EE;
    }
}
/* /Pages/AgentRequest.razor.rz.scp.css */
/* Page Container */
.page-container[b-k7bsam41mc] {
    padding: 20px;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    min-height: 100vh;
    animation: fadeIn-b-k7bsam41mc 0.6s ease-out;
    margin-top: -27px;
}

@keyframes fadeIn-b-k7bsam41mc {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb Animation */
.breadcrumb-animated[b-k7bsam41mc] {
    animation: slideInFromLeft-b-k7bsam41mc 0.5s ease-out;
    margin-bottom: 20px;
}

@keyframes slideInFromLeft-b-k7bsam41mc {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header Section */
.header-section[b-k7bsam41mc] {
    margin-bottom: 30px;
    animation: slideInFromTop-b-k7bsam41mc 0.7s ease-out;
}

@keyframes slideInFromTop-b-k7bsam41mc {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content[b-k7bsam41mc] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.back-button[b-k7bsam41mc] {
    transition: all 0.3s ease;
    border-radius: 50%;
}

.back-button:hover[b-k7bsam41mc] {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.title-container[b-k7bsam41mc] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.page-title[b-k7bsam41mc] {
    font-weight: 700;
    background: linear-gradient(45deg, #2196F3, #21CBF3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow-b-k7bsam41mc 2s ease-in-out infinite alternate;
}

@keyframes titleGlow-b-k7bsam41mc {
    from {
        filter: drop-shadow(0 0 5px rgba(33, 150, 243, 0.3));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(33, 150, 243, 0.6));
    }
}

.org-subtitle[b-k7bsam41mc] {
    color: #666;
    font-style: italic;
}

.header-divider[b-k7bsam41mc] {
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
    height: 2px;
    border: none;
    animation: dividerExpand-b-k7bsam41mc 0.8s ease-out;
}

@keyframes dividerExpand-b-k7bsam41mc {
    from {
        width: 0;
        margin: 0 auto;
    }
    to {
        width: 100%;
    }
}

/* Search Section */
.search-section[b-k7bsam41mc] {
    margin-bottom: 10px;
    animation: slideInFromRight-b-k7bsam41mc 0.8s ease-out;
}

@keyframes slideInFromRight-b-k7bsam41mc {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-card[b-k7bsam41mc] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.search-toolbar[b-k7bsam41mc] {
    padding: 15px 20px;
    border-radius: 15px;
}

.search-input-container[b-k7bsam41mc] {
    width: 300px;
}

.search-field[b-k7bsam41mc] {
    transition: all 0.3s ease;
}

.search-field:focus-within[b-k7bsam41mc] {
    transform: scale(1.02);
}

.send-button[b-k7bsam41mc] {
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, #4CAF50, #45a049);
}

.send-button:hover[b-k7bsam41mc] {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Table Section */
.table-section[b-k7bsam41mc] {
    animation: slideInFromBottom-b-k7bsam41mc 0.9s ease-out;
}

@keyframes slideInFromBottom-b-k7bsam41mc {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-card[b-k7bsam41mc] {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.table-card:hover[b-k7bsam41mc] {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.modern-table[b-k7bsam41mc] {
    border-radius: 20px;
    overflow: hidden;
}

.table-header[b-k7bsam41mc] {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.table-title[b-k7bsam41mc] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.title-icon[b-k7bsam41mc] {
    animation: pulse-b-k7bsam41mc 2s infinite;
}

@keyframes pulse-b-k7bsam41mc {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.count-chip[b-k7bsam41mc] {
    animation: bounceIn-b-k7bsam41mc 0.6s ease-out;
}

@keyframes bounceIn-b-k7bsam41mc {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.table-search[b-k7bsam41mc] {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
}

/* Table Headers */
.table-header-cell[b-k7bsam41mc] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 15px 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.table-header-cell .mud-icon[b-k7bsam41mc] {
    margin-right: 5px;
    animation: iconFloat-b-k7bsam41mc 3s ease-in-out infinite;
}

@keyframes iconFloat-b-k7bsam41mc {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Table Cells */
.table-cell[b-k7bsam41mc] {
    text-align: center;
    padding: 12px 8px;
    font-size: 13px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table-cell:hover[b-k7bsam41mc] {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 203, 243, 0.1));
    transform: scale(1.02);
}

.code-cell[b-k7bsam41mc] {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #2196F3;
}

.name-cell[b-k7bsam41mc] {
    font-weight: 600;
    color: #333;
}

.email-cell[b-k7bsam41mc] {
    color: #666;
    font-style: italic;
}

.phone-cell[b-k7bsam41mc] {
    font-family: 'Courier New', monospace;
    color: #4CAF50;
    font-weight: 500;
}

/* Action Buttons */
.actions-cell[b-k7bsam41mc] {
    padding: 8px;
}

.action-buttons[b-k7bsam41mc] {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.action-btn[b-k7bsam41mc] {
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn[b-k7bsam41mc]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.action-btn:hover[b-k7bsam41mc]::before {
    width: 100%;
    height: 100%;
}

.action-btn:hover[b-k7bsam41mc] {
    transform: scale(1.2) rotate(5deg);
}

.send-btn:hover[b-k7bsam41mc] {
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.history-btn:hover[b-k7bsam41mc] {
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

/* Modern Pager */
.modern-pager[b-k7bsam41mc] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 0 0 20px 20px;
    padding: 15px;
}

/* Loading Container */
.loading-container[b-k7bsam41mc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    gap: 20px;
}

.loading-text[b-k7bsam41mc] {
    color: #666;
    animation: loadingPulse-b-k7bsam41mc 1.5s ease-in-out infinite;
}

@keyframes loadingPulse-b-k7bsam41mc {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container[b-k7bsam41mc] {
        padding: 10px;
    }
    
    .header-content[b-k7bsam41mc] {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .search-toolbar[b-k7bsam41mc] {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-input-container[b-k7bsam41mc] {
        width: 100%;
    }
    
    .table-header[b-k7bsam41mc] {
        flex-direction: column;
        gap: 10px;
    }
    
    .action-buttons[b-k7bsam41mc] {
        flex-direction: column;
        gap: 5px;
    }
}

/* Smooth scrolling for table */
.modern-table .mud-table-container[b-k7bsam41mc] {
    scrollbar-width: thin;
    scrollbar-color: #2196F3 #f1f1f1;
}

.modern-table .mud-table-container[b-k7bsam41mc]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.modern-table .mud-table-container[b-k7bsam41mc]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-table .mud-table-container[b-k7bsam41mc]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2196F3, #21CBF3);
    border-radius: 10px;
}

.modern-table .mud-table-container[b-k7bsam41mc]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1976D2, #0288D1);
}
/* /Pages/AgentRequestHistory.razor.rz.scp.css */
.group[b-r7sci045mq] {
    width: 50%;
    margin-bottom: 25px;
}

    .group label[b-r7sci045mq] {
        display: block;
        margin-top: 26px;
        margin-bottom: 10px;
        margin-left: 11%;
    }

    .group input[b-r7sci045mq] {
        border: none;
        outline: none;
        padding: 20px;
        width: calc(100% - 40px);
        border-radius: 10px;
        background-color: #eaeff2;
        color: #3ba62f;
        font-size: 20px;
    }

    .group .power-container[b-r7sci045mq] {
        background-color: darkgray;
        width: 60%;
        height: 4px;
        border-radius: 5px;
        margin-left: 11%;
        margin-bottom: -30px;
    }

        .group .power-container #power-point[b-r7sci045mq] {
            background-color: #D73F40;
            width: 1%;
            height: 100%;
            border-radius: 5px;
            transition: 0.5s;
        }



.fade-in[b-r7sci045mq] {
    animation: fadeIn-b-r7sci045mq 0.6s ease-in-out;
}

.slide-up[b-r7sci045mq] {
    animation: slideUp-b-r7sci045mq 0.5s ease-out;
}

.bounce-in[b-r7sci045mq] {
    animation: bounceIn-b-r7sci045mq 0.8s ease-out;
}

.pulse-glow[b-r7sci045mq] {
    animation: pulseGlow-b-r7sci045mq 2s infinite;
}

.hover-lift[b-r7sci045mq] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .hover-lift:hover[b-r7sci045mq] {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.status-badge[b-r7sci045mq] {
    transition: all 0.3s ease;
    transform: scale(1);
}

    .status-badge:hover[b-r7sci045mq] {
        transform: scale(1.05);
    }

.modern-card[b-r7sci045mq] {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.gradient-header[b-r7sci045mq] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

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

    to {
        opacity: 1;
    }
}

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

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

@keyframes bounceIn-b-r7sci045mq {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseGlow-b-r7sci045mq {
    0%, 100% {
        box-shadow: 0 0 5px rgba(103, 126, 234, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(103, 126, 234, 0.8);
    }
}
/* /Pages/BidChatRAI.razor.rz.scp.css */
/* Page Container */
.page-container[b-fbujhgs443] {
    animation: fadeIn-b-fbujhgs443 0.6s ease-in-out;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.breadcrumbs-container[b-fbujhgs443] {
    margin-bottom: 20px;
    animation: slideInFromTop-b-fbujhgs443 0.5s ease-out;
}

.header-section[b-fbujhgs443] {
    margin-bottom: 30px;
    animation: slideInFromTop-b-fbujhgs443 0.6s ease-out 0.1s both;
}

.header-content[b-fbujhgs443] {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.back-button[b-fbujhgs443] {
    transition: all 0.3s ease;
}

.back-button:hover[b-fbujhgs443] {
    transform: translateX(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-title[b-fbujhgs443] {
    font-weight: 600;
    color: #1976d2;
    margin: 0;
}

.header-divider[b-fbujhgs443] {
    opacity: 0.6;
}

/* Error Alert */
.error-alert[b-fbujhgs443] {
    margin-bottom: 20px;
    animation: slideInFromTop-b-fbujhgs443 0.4s ease-out;
}

/* Chat Container */
.chat-container[b-fbujhgs443] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    height: 75vh;
    animation: slideInFromBottom-b-fbujhgs443 0.7s ease-out 0.2s both;
}

@media (max-width: 1200px) {
    .chat-container[b-fbujhgs443] {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
}

/* Chat Paper */
.chat-paper[b-fbujhgs443] {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transition: all 0.3s ease;
}

.chat-paper:hover[b-fbujhgs443] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Chat Header */
.chat-header[b-fbujhgs443] {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    gap: 12px;
}

.chat-icon[b-fbujhgs443] {
    font-size: 24px;
    animation: pulse-b-fbujhgs443 2s infinite;
}

/* Messages Container */
.messages-container[b-fbujhgs443] {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    scroll-behavior: smooth;
    height: 56vh;
}

.messages-container[b-fbujhgs443]::-webkit-scrollbar {
    width: 6px;
}

.messages-container[b-fbujhgs443]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.messages-container[b-fbujhgs443]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.messages-container[b-fbujhgs443]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Welcome Message */
.welcome-message[b-fbujhgs443] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    opacity: 0.7;
    animation: fadeIn-b-fbujhgs443 1s ease-in-out;
}

.welcome-icon[b-fbujhgs443] {
    margin-bottom: 16px;
    color: #667eea;
    animation: wave-b-fbujhgs443 2s ease-in-out infinite;
}

.welcome-text[b-fbujhgs443] {
    color: #666;
}

/* Message Wrapper */
.message-wrapper[b-fbujhgs443] {
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
}

.message-animate[b-fbujhgs443] {
    animation: messageSlideIn-b-fbujhgs443 0.5s ease-out forwards;
}

.user-message[b-fbujhgs443] {
    display: flex;
    justify-content: flex-end;
}

.ai-message[b-fbujhgs443] {
    display: flex;
    justify-content: flex-start;
}

/* Message Content */
.message-content[b-fbujhgs443] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 70%;
}

.user-message .message-content[b-fbujhgs443] {
    flex-direction: row-reverse;
}

.message-avatar[b-fbujhgs443] {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.message-avatar:hover[b-fbujhgs443] {
    transform: scale(1.1);
}

/* Message Bubble */
.message-bubble[b-fbujhgs443] {
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    transition: all 0.3s ease;
}

.user-message .message-bubble[b-fbujhgs443] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 6px;
}

.ai-message .message-bubble[b-fbujhgs443] {
    background: linear-gradient(135deg, lightgray 0%, white 100%);
    color: black;
    border-bottom-left-radius: 6px;
}

.message-bubble:hover[b-fbujhgs443] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.message-text[b-fbujhgs443] {
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
}

.message-time[b-fbujhgs443] {
    margin-top: 4px;
    opacity: 0.8;
    font-size: 0.75rem;
}

/* Typing Indicator */
.typing-indicator[b-fbujhgs443] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    animation: fadeIn-b-fbujhgs443 0.3s ease-in-out;
}

.typing-dots[b-fbujhgs443] {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #f0f0f0;
    border-radius: 18px;
    border-bottom-left-radius: 6px;
}

.typing-dots span[b-fbujhgs443] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typingDot-b-fbujhgs443 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1)[b-fbujhgs443] { animation-delay: -0.32s; }
.typing-dots span:nth-child(2)[b-fbujhgs443] { animation-delay: -0.16s; }
.typing-dots span:nth-child(3)[b-fbujhgs443] { animation-delay: 0s; }

/* Input Container */
.input-container[b-fbujhgs443] {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.message-input[b-fbujhgs443] {
    flex: 1;
}

.send-button[b-fbujhgs443] {
    min-width: 100px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.send-button:hover:not(:disabled)[b-fbujhgs443] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.send-button:disabled[b-fbujhgs443] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Info Panel */
.info-panel[b-fbujhgs443] {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    transition: all 0.3s ease;
}

.info-panel:hover[b-fbujhgs443] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-header[b-fbujhgs443] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: #333;
}

.info-icon[b-fbujhgs443] {
    font-size: 20px;
}

.info-content[b-fbujhgs443] {
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.info-item[b-fbujhgs443] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.info-label[b-fbujhgs443] {
    color: #666;
    font-weight: 500;
}

.info-value[b-fbujhgs443] {
    font-weight: 600;
    color: #333;
}

.info-divider[b-fbujhgs443] {
    margin: 16px 0;
    opacity: 0.3;
}

.clear-button[b-fbujhgs443] {
    width: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.clear-button:hover[b-fbujhgs443] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Animations */
@keyframes fadeIn-b-fbujhgs443 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromTop-b-fbujhgs443 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom-b-fbujhgs443 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes messageSlideIn-b-fbujhgs443 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-fbujhgs443 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes wave-b-fbujhgs443 {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

@keyframes typingDot-b-fbujhgs443 {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-container[b-fbujhgs443] {
        padding: 10px;
    }
    
    .chat-container[b-fbujhgs443] {
        height: 80vh;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .message-content[b-fbujhgs443] {
        max-width: 85%;
    }
    
    .input-container[b-fbujhgs443] {
        flex-direction: column;
        gap: 10px;
    }
    
    .send-button[b-fbujhgs443] {
        width: 100%;
    }
    
    .info-panel[b-fbujhgs443] {
        order: -1;
    }
}
/* /Pages/BidChatRDashboard.razor.rz.scp.css */
/* Modern Dashboard Animations & Styling */

/* Background Bubbles */
.background-bubbles[b-dxhjeypmis] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bubble[b-dxhjeypmis] {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-b-dxhjeypmis 15s infinite ease-in-out;
}

.bubble-1[b-dxhjeypmis] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2979FF, #1976D2);
    left: 10%;
    animation-delay: 0s;
}

.bubble-2[b-dxhjeypmis] {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1DE9B6, #00BCD4);
    left: 20%;
    animation-delay: 2s;
}

.bubble-3[b-dxhjeypmis] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    left: 35%;
    animation-delay: 4s;
}

.bubble-4[b-dxhjeypmis] {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    left: 50%;
    animation-delay: 6s;
}

.bubble-5[b-dxhjeypmis] {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    left: 65%;
    animation-delay: 8s;
}

.bubble-6[b-dxhjeypmis] {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    left: 75%;
    animation-delay: 10s;
}

.bubble-7[b-dxhjeypmis] {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #3F51B5, #303F9F);
    left: 85%;
    animation-delay: 12s;
}

.bubble-8[b-dxhjeypmis] {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #607D8B, #455A64);
    left: 90%;
    animation-delay: 14s;
}

@keyframes float-b-dxhjeypmis {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Keyframe Animations */
@keyframes fadeIn-b-dxhjeypmis {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-dxhjeypmis {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown-b-dxhjeypmis {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft-b-dxhjeypmis {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight-b-dxhjeypmis {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce-b-dxhjeypmis {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse-b-dxhjeypmis {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes countUp-b-dxhjeypmis {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer-b-dxhjeypmis {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes glow-b-dxhjeypmis {
    0%, 100% {
        box-shadow: 0 0 20px rgba(41, 121, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(41, 121, 255, 0.6);
    }
}

@keyframes morphing-b-dxhjeypmis {
    0%, 100% {
        border-radius: 16px;
    }
    50% {
        border-radius: 24px;
    }
}

@keyframes gradientShift-b-dxhjeypmis {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 200% 50%;
    }
    75% {
        background-position: 300% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes chartGlow-b-dxhjeypmis {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.4);
    }
}

@keyframes dataFlow-b-dxhjeypmis {
    0% {
        transform: translateX(-100%) scaleX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scaleX(1);
        opacity: 0;
    }
}

@keyframes numberCounter-b-dxhjeypmis {
    0% {
        transform: translateY(20px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes iconFloat-b-dxhjeypmis {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    75% {
        transform: translateY(5px) rotate(-2deg);
    }
}

/* Animation Classes */
.animate-fade-in[b-dxhjeypmis] {
    animation: fadeIn-b-dxhjeypmis 0.8s ease-out;
}

.animate-slide-up[b-dxhjeypmis] {
    animation: slideUp-b-dxhjeypmis 0.8s ease-out;
    animation-fill-mode: both;
}

.animate-slide-down[b-dxhjeypmis] {
    animation: slideDown-b-dxhjeypmis 0.6s ease-out;
}

.animate-slide-left[b-dxhjeypmis] {
    animation: slideLeft-b-dxhjeypmis 0.8s ease-out;
    animation-fill-mode: both;
}

.animate-slide-right[b-dxhjeypmis] {
    animation: slideRight-b-dxhjeypmis 0.8s ease-out;
    animation-fill-mode: both;
}

.counter-animation[b-dxhjeypmis] {
    animation: countUp-b-dxhjeypmis 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.icon-bounce[b-dxhjeypmis] {
    animation: bounce-b-dxhjeypmis 2s infinite;
    animation-delay: 1s;
}

/* Dashboard Container */
.dashboard-container[b-dxhjeypmis] {
    height: 90vh;
    /*background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);*/
    position: relative;
    overflow: hidden;
}

.modern-progress[b-dxhjeypmis] {
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #10B981, #F59E0B);
    background-size: 300% 100%;
    animation: gradientShift-b-dxhjeypmis 4s ease infinite;
    border-radius: 12px;
    height: 8px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-progress[b-dxhjeypmis]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-b-dxhjeypmis 2s infinite;
}

.org-select[b-dxhjeypmis] {
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.org-select:hover[b-dxhjeypmis] {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Card Styles */
.stat-card[b-dxhjeypmis], .chart-card[b-dxhjeypmis], .logs-card[b-dxhjeypmis], .comparison-card[b-dxhjeypmis], .agents-card[b-dxhjeypmis] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card[b-dxhjeypmis]::before, .chart-card[b-dxhjeypmis]::before, .logs-card[b-dxhjeypmis]::before, .comparison-card[b-dxhjeypmis]::before, .agents-card[b-dxhjeypmis]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.stat-card:hover[b-dxhjeypmis]::before, .chart-card:hover[b-dxhjeypmis]::before, .logs-card:hover[b-dxhjeypmis]::before, .comparison-card:hover[b-dxhjeypmis]::before, .agents-card:hover[b-dxhjeypmis]::before {
    left: 100%;
}

.stat-card:hover[b-dxhjeypmis], .chart-card:hover[b-dxhjeypmis], .logs-card:hover[b-dxhjeypmis], .comparison-card:hover[b-dxhjeypmis], .agents-card:hover[b-dxhjeypmis] {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: glow-b-dxhjeypmis 2s infinite;
}

/* Enhanced Stat Card Variants */
.stat-card-primary[b-dxhjeypmis] {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(147, 197, 253, 0.05) 100%);
    border-left: 6px solid #3B82F6;
    position: relative;
    overflow: hidden;
}

.stat-card-primary[b-dxhjeypmis]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.03));
    transform: skewX(-15deg);
}

.stat-card-info[b-dxhjeypmis] {
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(103, 232, 249, 0.05) 100%);
    border-left: 6px solid #06B6D4;
    position: relative;
    overflow: hidden;
}

.stat-card-info[b-dxhjeypmis]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.03));
    transform: skewX(-15deg);
}

.stat-card-success[b-dxhjeypmis] {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        rgba(255, 255, 255, 0.95) 50%, 
        rgba(110, 231, 183, 0.05) 100%);
    border-left: 6px solid #10B981;
    position: relative;
    overflow: hidden;
}

.stat-card-success[b-dxhjeypmis]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.03));
    transform: skewX(-15deg);
}

.stat-icon-container[b-dxhjeypmis] {
    position: relative;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: iconFloat-b-dxhjeypmis 4s ease-in-out infinite;
}

.stat-icon-container[b-dxhjeypmis]::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-icon-container:hover[b-dxhjeypmis] {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.95));
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    animation: chartGlow-b-dxhjeypmis 2s infinite;
}

.stat-icon-container:hover[b-dxhjeypmis]::before {
    opacity: 1;
}

.stat-number[b-dxhjeypmis] {
    font-size: 2.8rem !important;
    background: linear-gradient(135deg, currentColor 0%, rgba(0,0,0,0.8) 50%, currentColor 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberCounter-b-dxhjeypmis 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 800 !important;
    letter-spacing: -1px;
    position: relative;
}

.stat-number[b-dxhjeypmis]::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, currentColor, transparent);
    animation: dataFlow-b-dxhjeypmis 2s ease-in-out infinite;
    animation-delay: 1s;
}

.stat-label[b-dxhjeypmis] {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* Enhanced Chart Cards */
.chart-card[b-dxhjeypmis] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    animation: morphing-b-dxhjeypmis 8s ease-in-out infinite;
}

.modern-chart-card[b-dxhjeypmis] {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.9) 50%, 
        rgba(240, 245, 251, 0.95) 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-chart-card[b-dxhjeypmis]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4, #10B981, #F59E0B);
    background-size: 300% 100%;
    animation: gradientShift-b-dxhjeypmis 4s ease infinite;
}

.chart-card:hover[b-dxhjeypmis] {
    animation: morphing-b-dxhjeypmis 2s ease-in-out infinite, glow-b-dxhjeypmis 2s infinite;
}

.chart-header[b-dxhjeypmis] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(16, 185, 129, 0.03));
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px !important;
}

.chart-icon-container[b-dxhjeypmis] {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-b-dxhjeypmis 3s infinite;
}

.chart-icon-container.messages[b-dxhjeypmis] {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.chart-icon-container:hover[b-dxhjeypmis] {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.chart-icon[b-dxhjeypmis] {
    color: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.chart-title[b-dxhjeypmis] {
    background: linear-gradient(135deg, #1F2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem !important;
}

.chart-content[b-dxhjeypmis] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(249, 250, 251, 0.9));
    border-radius: 0 0 20px 20px;
}

.chart-container[b-dxhjeypmis] {
    position: relative;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 355px !important;
}

.chart-container:hover[b-dxhjeypmis] {
    transform: scale(1.02);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.08);
}

.modern-chart[b-dxhjeypmis] {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.modern-chart:hover[b-dxhjeypmis] {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.legend-item[b-dxhjeypmis] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.legend-item:hover[b-dxhjeypmis] {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.legend-dot[b-dxhjeypmis] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.legend-dot[b-dxhjeypmis]::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
}

.pulse-animation[b-dxhjeypmis] {
    animation: pulse-b-dxhjeypmis 2s infinite;
}

.legend-dot:hover[b-dxhjeypmis] {
    transform: scale(1.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.legend-dot.today[b-dxhjeypmis] {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.legend-dot.yesterday[b-dxhjeypmis] {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}

.legend-text[b-dxhjeypmis] {
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.chart-placeholder[b-dxhjeypmis] {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    background: linear-gradient(45deg, #f8fafc, #e2e8f0, #f8fafc);
    background-size: 200px 200px;
    animation: shimmer-b-dxhjeypmis 2s infinite linear;
    border-radius: 12px;
}

.modern-placeholder[b-dxhjeypmis] {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(16, 185, 129, 0.05) 50%, 
        rgba(245, 158, 11, 0.05) 100%);
    background-size: 400% 400%;
    animation: gradientShift-b-dxhjeypmis 3s ease infinite;
    border: 2px dashed rgba(59, 130, 246, 0.2);
}

.loading-animation[b-dxhjeypmis] {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn-b-dxhjeypmis 0.5s ease-in-out;
}

.loading-text[b-dxhjeypmis] {
    color: #6B7280;
    font-weight: 500;
    animation: pulse-b-dxhjeypmis 2s infinite;
}

.logs-table[b-dxhjeypmis] {
    border-radius: 0 0 16px 16px;
    transition: all 0.3s ease;
}

.logs-table tbody tr[b-dxhjeypmis] {
    transition: all 0.3s ease;
}

.logs-table tbody tr:hover[b-dxhjeypmis] {
    background: rgba(102, 126, 234, 0.05) !important;
    transform: translateX(4px);
}

.agents-list[b-dxhjeypmis] {
    padding: 20px;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.agent-item[b-dxhjeypmis] {
    display: flex;
    align-items: center;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    margin: 6px 0;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
}

.agent-item[b-dxhjeypmis]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    transition: width 0.4s ease;
    border-radius: 12px 0 0 12px;
}

.agent-item:hover[b-dxhjeypmis] {
    background: rgba(76, 175, 80, 0.08);
    transform: translateX(12px) scale(1.02);
    padding-left: 20px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
}

.agent-item:hover[b-dxhjeypmis]::before {
    width: 4px;
}

.agent-item:last-child[b-dxhjeypmis] {
    border-bottom: none;
}

.agent-item .mud-avatar[b-dxhjeypmis] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.agent-item:hover .mud-avatar[b-dxhjeypmis] {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.agent-item .mud-avatar[b-dxhjeypmis]::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse-b-dxhjeypmis 2s infinite;
}

.opacity-75[b-dxhjeypmis] {
    opacity: 0.75;
    transition: all 0.3s ease;
}

/* Progress Bar Animation */
.mud-progress-linear[b-dxhjeypmis] {
    overflow: hidden;
    position: relative;
}

.mud-progress-linear[b-dxhjeypmis]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    animation: shimmer-b-dxhjeypmis 2s infinite linear;
}

/* Responsive Animations */
@media (max-width: 768px) {
    .animate-slide-left[b-dxhjeypmis], .animate-slide-right[b-dxhjeypmis] {
        animation: slideUp-b-dxhjeypmis 0.8s ease-out;
        animation-fill-mode: both;
    }
    
    .stat-card:hover[b-dxhjeypmis], .chart-card:hover[b-dxhjeypmis], .logs-card:hover[b-dxhjeypmis], .comparison-card:hover[b-dxhjeypmis], .agents-card:hover[b-dxhjeypmis] {
        transform: translateY(-4px);
    }
}

/* Custom Scrollbar */
[b-dxhjeypmis]::-webkit-scrollbar {
    width: 8px;
}

[b-dxhjeypmis]::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

[b-dxhjeypmis]::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

[b-dxhjeypmis]::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}
/* Additional Modern Enhancements */
.mud-card[b-dxhjeypmis] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mud-button[b-dxhjeypmis] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 12px !important;
}

.mud-button:hover[b-dxhjeypmis] {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.mud-chip[b-dxhjeypmis] {
    transition: all 0.3s ease !important;
    border-radius: 20px !important;
}

.mud-chip:hover[b-dxhjeypmis] {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Enhanced Progress Bar Animation */
.modern-progress .mud-progress-linear-bar[b-dxhjeypmis] {
    background: linear-gradient(90deg, #2979FF, #1DE9B6, #4CAF50) !important;
    background-size: 200% 100%;
    animation: gradientShift-b-dxhjeypmis 3s ease infinite;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.modern-progress .mud-progress-linear-bar[b-dxhjeypmis]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer-b-dxhjeypmis 2s infinite;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dashboard-container[b-dxhjeypmis] {
        /*background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);*/
    }
    
    .stat-card[b-dxhjeypmis], .chart-card[b-dxhjeypmis], .logs-card[b-dxhjeypmis], .comparison-card[b-dxhjeypmis], .agents-card[b-dxhjeypmis] {
        background: rgba(45, 55, 72, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #e2e8f0;
    }
    
    .bubble[b-dxhjeypmis] {
        opacity: 0.05;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .background-bubbles .bubble[b-dxhjeypmis] {
        display: none;
    }
    
    .stat-card:hover[b-dxhjeypmis], .chart-card:hover[b-dxhjeypmis], .logs-card:hover[b-dxhjeypmis], .comparison-card:hover[b-dxhjeypmis], .agents-card:hover[b-dxhjeypmis] {
        transform: translateY(-3px);
    }
    
    .stat-number[b-dxhjeypmis] {
        font-size: 1.8rem !important;
    }
}
/* /Pages/BidChatRHome.razor.rz.scp.css */
@keyframes slideUp-b-kci5pcckg0 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-slide-up[b-kci5pcckg0] {
    animation: slideUp-b-kci5pcckg0 0.8s ease-out;
    animation-fill-mode: both;
}
/* /Pages/BidChatRLogs.razor.rz.scp.css */
.flip-card[b-dv3988gar0] {
    background-color: transparent;
    width: 300px;
    height: 200px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner[b-dv3988gar0] {
    position: relative;
    width: 300px;
    height: 200px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner[b-dv3988gar0] {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front[b-dv3988gar0], .flip-card-back[b-dv3988gar0] {
    position: absolute;
    width: 300px;
    height: 200px;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front[b-dv3988gar0] {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back[b-dv3988gar0] {
    background-color: dodgerblue;
    color: white;
    transform: rotateY(180deg);
}

.fade-in[b-dv3988gar0] {
    animation: fadeIn-b-dv3988gar0 0.6s ease-in-out;
}

.slide-in-left[b-dv3988gar0] {
    animation: slideInLeft-b-dv3988gar0 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right[b-dv3988gar0] {
    animation: slideInRight-b-dv3988gar0 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bounce-in[b-dv3988gar0] {
    animation: bounceIn-b-dv3988gar0 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pulse-hover:hover[b-dv3988gar0] {
    animation: pulse-b-dv3988gar0 0.6s infinite;
}

.glass-effect[b-dv3988gar0] {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-card[b-dv3988gar0] {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .modern-card:hover[b-dv3988gar0] {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

.error-state[b-dv3988gar0] {
    animation: shake-b-dv3988gar0 0.5s ease-in-out;
}

.scrollable-panel[b-dv3988gar0] {
    max-height: 75vh; /* adjust height as needed */
    overflow-y: auto; /* vertical scrolling */
    padding-right: 4px; /* optional, avoids scrollbar overlapping content */
    scroll-behavior: smooth; /* smooth scroll on mobile */
}

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

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft-b-dv3988gar0 {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

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

@keyframes slideInRight-b-dv3988gar0 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

@keyframes bounceIn-b-dv3988gar0 {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-b-dv3988gar0 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake-b-dv3988gar0 {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-10px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(10px);
    }
}
/* /Pages/BidChatRMasterList.razor.rz.scp.css */
/* Modern Page Animations */
.page-container[b-bof3o2jguk] {
    min-height: 100vh;
}

.fade-in[b-bof3o2jguk] {
    animation: fadeIn-b-bof3o2jguk 0.6s ease-in-out;
}

.slide-down[b-bof3o2jguk] {
    animation: slideDown-b-bof3o2jguk 0.5s ease-out;
}

.slide-up[b-bof3o2jguk] {
    animation: slideUp-b-bof3o2jguk 0.5s ease-out 0.2s both;
}

.shake[b-bof3o2jguk] {
    animation: shake-b-bof3o2jguk 0.5s ease-in-out;
}

/* Keyframe Animations */
@keyframes fadeIn-b-bof3o2jguk {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown-b-bof3o2jguk {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp-b-bof3o2jguk {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shake-b-bof3o2jguk {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes pulse-b-bof3o2jguk {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Modern Components */
.breadcrumb-modern[b-bof3o2jguk] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-card[b-bof3o2jguk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

    .header-card .mud-text[b-bof3o2jguk] {
        color: white !important;
    }

.control-panel[b-bof3o2jguk] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Status Indicators */
.status-indicator[b-bof3o2jguk] {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.status-ok[b-bof3o2jguk] {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-warning[b-bof3o2jguk] {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.status-never[b-bof3o2jguk] {
    background: rgba(158, 158, 158, 0.1);
    color: #9e9e9e;
    border: 1px solid rgba(158, 158, 158, 0.3);
}

/* Interactive Elements */
.bounce-hover[b-bof3o2jguk] {
    transition: transform 0.2s ease;
}

    .bounce-hover:hover[b-bof3o2jguk] {
        transform: scale(1.1);
    }

.pulse-button[b-bof3o2jguk] {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .pulse-button:hover:not(:disabled)[b-bof3o2jguk] {
        animation: pulse-b-bof3o2jguk 0.6s ease-in-out;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

/* Alert Styling */
.warning-alert[b-bof3o2jguk] {
    border-radius: 12px;
    border-left: 4px solid #ff9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

/* Update Info */
.update-info[b-bof3o2jguk] {
    padding: 8px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-modern[b-bof3o2jguk] {
        margin: 10px;
        padding: 8px 16px;
    }

    .header-card .mud-grid .mud-item[b-bof3o2jguk] {
        text-align: center !important;
    }

    .status-indicator[b-bof3o2jguk] {
        justify-content: center;
        margin-top: 16px;
    }

    .control-panel .mud-grid .mud-item:last-child[b-bof3o2jguk] {
        text-align: center !important;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .page-container[b-bof3o2jguk] {
        padding: 0 8px;
    }

    .header-card[b-bof3o2jguk],
    .control-panel[b-bof3o2jguk] {
        margin: 8px 0;
    }

    .pulse-button[b-bof3o2jguk] {
        width: 100%;
        margin-top: 16px;
    }
}
/* /Pages/BidChatROrganisation.razor.rz.scp.css */
.page-container[b-lk7mp0cbg5] {
    animation: fadeInUp-b-lk7mp0cbg5 0.6s ease-out;
    transform: translateY(0);
}

.header-card[b-lk7mp0cbg5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

    .header-card:hover[b-lk7mp0cbg5] {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

.action-button[b-lk7mp0cbg5] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

    .action-button:hover[b-lk7mp0cbg5] {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

.modern-table[b-lk7mp0cbg5] {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: slideInUp-b-lk7mp0cbg5 0.8s ease-out 0.2s both;
}

.table-row[b-lk7mp0cbg5] {
    transition: all 0.3s ease;
}

    .table-row:hover[b-lk7mp0cbg5] {
        background: linear-gradient(90deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 100%);
        transform: translateX(4px);
    }

.loading-container[b-lk7mp0cbg5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: pulse-b-lk7mp0cbg5 2s infinite;
}

@keyframes fadeInUp-b-lk7mp0cbg5 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

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

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

    50% {
        opacity: 0.7;
    }
}

.fade-in[b-lk7mp0cbg5] {
    animation: fadeIn-b-lk7mp0cbg5 0.6s ease-in;
}

.slide-up[b-lk7mp0cbg5] {
    animation: slideUp-b-lk7mp0cbg5 0.5s ease-out;
    width: 83vw
}

.hover-lift[b-lk7mp0cbg5] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hover-lift:hover[b-lk7mp0cbg5] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.pulse-icon[b-lk7mp0cbg5] {
    animation: pulse-b-lk7mp0cbg5 2s infinite;
}

.modern-card[b-lk7mp0cbg5] {
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.org-card[b-lk7mp0cbg5] {
    transition: all 0.3s ease;
    border-radius: 12px;
}

    .org-card:hover[b-lk7mp0cbg5] {
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

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

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

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

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

@keyframes pulse-b-lk7mp0cbg5 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}
/* /Pages/BidChatROrganisationView.razor.rz.scp.css */
.fade-in[b-zzcbfg8bs5] {
    animation: fadeIn-b-zzcbfg8bs5 0.6s ease-in;
}

.slide-up[b-zzcbfg8bs5] {
    animation: slideUp-b-zzcbfg8bs5 0.5s ease-out;
}

.scale-in[b-zzcbfg8bs5] {
    animation: scaleIn-b-zzcbfg8bs5 0.4s ease-out;
}

.stagger-1[b-zzcbfg8bs5] {
    animation-delay: 0.1s;
}

.stagger-2[b-zzcbfg8bs5] {
    animation-delay: 0.2s;
}

.stagger-3[b-zzcbfg8bs5] {
    animation-delay: 0.3s;
}

.modern-card[b-zzcbfg8bs5] {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.glass-effect[b-zzcbfg8bs5] {
    background: rgba(255,255,255,0.95);
}

.hover-lift:hover[b-zzcbfg8bs5] {
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

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

    to {
        opacity: 1;
    }
}

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

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

@keyframes scaleIn-b-zzcbfg8bs5 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* /Pages/BidChatROrganisationViewEdit.razor.rz.scp.css */
/* Modern animations and styles */
@keyframes fadeInUp-b-ssbcgm4i1v {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft-b-ssbcgm4i1v {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight-b-ssbcgm4i1v {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-b-ssbcgm4i1v {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer-b-ssbcgm4i1v {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.page-container[b-ssbcgm4i1v] {
    animation: fadeInUp-b-ssbcgm4i1v 0.6s ease-out;
}

.breadcrumb-container[b-ssbcgm4i1v] {
    animation: slideInLeft-b-ssbcgm4i1v 0.5s ease-out;
}

.title-section[b-ssbcgm4i1v] {
    animation: slideInRight-b-ssbcgm4i1v 0.5s ease-out 0.1s both;
}

.form-container[b-ssbcgm4i1v] {
    animation: fadeInUp-b-ssbcgm4i1v 0.7s ease-out 0.2s both;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.drag-drop-container[b-ssbcgm4i1v] {
    animation: fadeInUp-b-ssbcgm4i1v 0.6s ease-out 0.3s both;
}

.drop-zone[b-ssbcgm4i1v] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.drop-zone[b-ssbcgm4i1v]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.drop-zone:hover[b-ssbcgm4i1v]::before {
    left: 100%;
}

.drop-zone:hover[b-ssbcgm4i1v] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.drop-zone.drag-over[b-ssbcgm4i1v] {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(33, 150, 243, 0.3);
    border: 2px dashed #2196f3;
}

.drop-item[b-ssbcgm4i1v] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    position: relative;
    overflow: hidden;
}

.drop-item:hover[b-ssbcgm4i1v] {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.drop-item:active[b-ssbcgm4i1v] {
    cursor: grabbing;
    transform: rotate(5deg) scale(0.95);
}

.drop-item.dragging[b-ssbcgm4i1v] {
    opacity: 0.7;
    transform: rotate(5deg) scale(1.05);
    z-index: 1000;
}

.filter-container[b-ssbcgm4i1v] {
    animation: slideInLeft-b-ssbcgm4i1v 0.5s ease-out 0.4s both;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.filter-input[b-ssbcgm4i1v] {
    transition: all 0.3s ease;
}

.filter-input:focus[b-ssbcgm4i1v] {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.3);
}

.loading-shimmer[b-ssbcgm4i1v] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer-b-ssbcgm4i1v 1.5s infinite;
}

.success-animation[b-ssbcgm4i1v] {
    animation: pulse-b-ssbcgm4i1v 0.6s ease-in-out;
}

.form-field[b-ssbcgm4i1v] {
    animation: fadeInUp-b-ssbcgm4i1v 0.4s ease-out;
}

.form-field:nth-child(1)[b-ssbcgm4i1v] { animation-delay: 0.1s; }
.form-field:nth-child(2)[b-ssbcgm4i1v] { animation-delay: 0.2s; }
.form-field:nth-child(3)[b-ssbcgm4i1v] { animation-delay: 0.3s; }
.form-field:nth-child(4)[b-ssbcgm4i1v] { animation-delay: 0.4s; }

.button-hover[b-ssbcgm4i1v] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-hover:hover[b-ssbcgm4i1v] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.glass-effect[b-ssbcgm4i1v] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.zone-not-assigned[b-ssbcgm4i1v] {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc80 100%);
    border-left: 4px solid #ff9800;
}

.zone-assigned[b-ssbcgm4i1v] {
    background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
    border-left: 4px solid #2196f3;
}

.item-count-badge[b-ssbcgm4i1v] {
    position: absolute;
    top: 3px;
    right: -8px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse-b-ssbcgm4i1v 2s infinite;
}

@media (max-width: 768px) {
    .drop-zone[b-ssbcgm4i1v] {
        width: 100% !important;
        margin-left: 0 !important;
        margin-bottom: 20px;
    }
    
    .drag-drop-container[b-ssbcgm4i1v] {
        flex-direction: column !important;
    }
}
/* /Pages/BidChatRReports.razor.rz.scp.css */
.headerFilter[b-znwwrylkyi] {
    display: flex;
    height: 7vh;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: auto;
    margin-left: 10.5%;
    width: 79%
}

    .headerFilter select[b-znwwrylkyi] {
        width: 15%;
        height: 50%;
        margin-top: 1.2%;
        margin-left: 20px;
        font-size: 11px;
        padding-bottom: 4px;
        padding-top: -10px
    }

    .headerFilter button[b-znwwrylkyi] {
        margin-top: 1.4%;
        margin-right: 20px;
        width: 8%;
        height: 50%;
        font-size: 11px;
        padding-top: -10px;
        padding-bottom: 4px;
    }

.bodyReport[b-znwwrylkyi] {
    display: flex;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 20px;
    padding: 10px;
    width: 90%
}

.navTabsStyles[b-znwwrylkyi] {
    margin-bottom: 10px;
    width: 81.5vw;
    margin-left: 120px;
    margin-top: -10px
}

.dateStyles[b-znwwrylkyi] {
    display: flex
}

    .dateStyles input[b-znwwrylkyi] {
        margin-top: 16px;
        margin-left: 10px;
        height: 40%;
        border: 1px solid #cccccc;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px
    }

    .dateStyles p[b-znwwrylkyi] {
        margin-top: 15px;
        margin-left: 20px;
        font-size: 14px
    }

.tableStyles[b-znwwrylkyi] {
    overflow-y: auto;
    overflow-x: auto;
    width: 65%;
    margin-left: -10px;
    font-size: 13px;
    height: 66vh
}

.tableHeader[b-znwwrylkyi] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartHeader[b-znwwrylkyi] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartStyles[b-znwwrylkyi] {
    width: 50%
}

.innerChartStyles[b-znwwrylkyi] {
    max-width: 100%;
    margin-left: -1px;
    margin-top: 80px
}

.nullStyles[b-znwwrylkyi] {
    margin-top: 50px;
    position: absolute;
    margin-left: 32%;
    margin-right: auto;
}
/* /Pages/BidChatRReportsView.razor.rz.scp.css */
.headerFilter[b-762a8r2800] {
    display: flex;
    height: 7vh;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: auto;
    margin-left: 10.5%;
    width: 79%
}

    .headerFilter select[b-762a8r2800] {
        width: 15%;
        height: 50%;
        margin-top: 1.2%;
        margin-left: 20px;
        font-size: 11px;
        padding-bottom: 4px;
        padding-top: -10px
    }

    .headerFilter button[b-762a8r2800] {
        margin-top: 1.4%;
        margin-right: 20px;
        width: 8%;
        height: 50%;
        font-size: 11px;
        padding-top: -10px;
        padding-bottom: 4px;
    }

.bodyReport[b-762a8r2800] {
    display: flex;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 20px;
    padding: 10px;
    width: 90%
}

.navTabsStyles[b-762a8r2800] {
    margin-bottom: 10px;
    width: 81.5vw;
    margin-left: 120px;
    margin-top: -10px
}

.dateStyles[b-762a8r2800] {
    display: flex
}

    .dateStyles input[b-762a8r2800] {
        margin-top: 16px;
        margin-left: 10px;
        height: 40%;
        border: 1px solid #cccccc;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px
    }

    .dateStyles p[b-762a8r2800] {
        margin-top: 15px;
        margin-left: 20px;
        font-size: 14px
    }

.tableStyles[b-762a8r2800] {
    overflow-y: auto;
    overflow-x: auto;
    width: 65%;
    margin-left: -10px;
    font-size: 13px;
    height: 66vh
}

.tableHeader[b-762a8r2800] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartHeader[b-762a8r2800] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartStyles[b-762a8r2800] {
    width: 50%
}

.innerChartStyles[b-762a8r2800] {
    max-width: 100%;
    margin-left: -1px;
    margin-top: 80px
}

.nullStyles[b-762a8r2800] {
    margin-top: 50px;
    position: absolute;
    margin-left: 32%;
    margin-right: auto;
}
/* /Pages/BidChatRSummary.razor.rz.scp.css */
.headerFilter[b-i08x5ft397] {
    display: flex;
    height: 7vh;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: auto;
    margin-left: 10.5%;
    width: 79%
}

    .headerFilter select[b-i08x5ft397] {
        width: 15%;
        height: 50%;
        margin-top: 1.2%;
        margin-left: 20px;
        font-size: 11px;
        padding-bottom: 4px;
        padding-top: -10px
    }

    .headerFilter button[b-i08x5ft397] {
        margin-top: 1.4%;
        margin-right: 20px;
        width: 8%;
        height: 50%;
        font-size: 11px;
        padding-top: -10px;
        padding-bottom: 4px;
    }

.bodyReport[b-i08x5ft397] {
    display: flex;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 20px;
    padding: 10px;
    width: 90%
}

.navTabsStyles[b-i08x5ft397] {
    margin-bottom: 10px;
    width: 81.5vw;
    margin-left: 120px;
    margin-top: -10px
}

.dateStyles[b-i08x5ft397] {
    display: flex
}

    .dateStyles input[b-i08x5ft397] {
        margin-top: 16px;
        margin-left: 10px;
        height: 40%;
        border: 1px solid #cccccc;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px
    }

    .dateStyles p[b-i08x5ft397] {
        margin-top: 15px;
        margin-left: 20px;
        font-size: 14px
    }

.tableStyles[b-i08x5ft397] {
    overflow-y: auto;
    overflow-x: auto;
    width: 65%;
    margin-left: -10px;
    font-size: 13px;
    height: 66vh
}

.tableHeader[b-i08x5ft397] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartHeader[b-i08x5ft397] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartStyles[b-i08x5ft397] {
    width: 50%
}

.innerChartStyles[b-i08x5ft397] {
    max-width: 100%;
    margin-left: -1px;
    margin-top: 80px
}

.nullStyles[b-i08x5ft397] {
    margin-top: 50px;
    position: absolute;
    margin-left: 32%;
    margin-right: auto;
}
.fade-in[b-i08x5ft397] {
    animation: fadeIn-b-i08x5ft397 0.6s ease-in-out;
}

.slide-up[b-i08x5ft397] {
    animation: slideUp-b-i08x5ft397 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in[b-i08x5ft397] {
    animation: scaleIn-b-i08x5ft397 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stat-card[b-i08x5ft397] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .stat-card:hover[b-i08x5ft397] {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.chart-container[b-i08x5ft397] {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

    .chart-container.loaded[b-i08x5ft397] {
        opacity: 1;
        transform: translateY(0);
    }

.loading-shimmer[b-i08x5ft397] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-i08x5ft397 1.5s infinite;
}

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

    to {
        opacity: 1;
    }
}

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

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

@keyframes scaleIn-b-i08x5ft397 {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer-b-i08x5ft397 {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.error-container[b-i08x5ft397] {
    animation: shake-b-i08x5ft397 0.5s ease-in-out;
}

@keyframes shake-b-i08x5ft397 {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}
/* /Pages/BidChatRTemplates.razor.rz.scp.css */
.mobile-container[b-i6ahu1zyjr] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    margin-top: -20px;
}

.phone-frame[b-i6ahu1zyjr] {
    width: 280px;
    height: 500px;
    border: 3px solid #333;
    border-radius: 25px;
    background: #F0E7E0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.whatsapp-header[b-i6ahu1zyjr] {
    background: #075e54;
    color: white;
    height: 60px;
    display: flex;
    align-items: center;
}

.whatsapp-avatar[b-i6ahu1zyjr] {
    width: 32px !important;
    height: 32px !important;
    background: #ddd;
}

.whatsapp-contact-name[b-i6ahu1zyjr] {
    color: white !important;
    font-weight: 500;
}

.whatsapp-status[b-i6ahu1zyjr] {
    color: #d1f4cc !important;
}

.message-container[b-i6ahu1zyjr] {
    flex: 1;
    padding: 5px;
    background: #F0E7E0;
    overflow-y: auto;
    max-height: 350px;
}

.message-bubble[b-i6ahu1zyjr] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    overflow: hidden;
}

    .message-bubble.empty-state[b-i6ahu1zyjr] {
        background: #f5f5f5;
        border: 2px dashed #ccc;
    }

.message-header .header-media[b-i6ahu1zyjr] {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.header-placeholder[b-i6ahu1zyjr] {
    height: 120px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.header-text[b-i6ahu1zyjr] {
    padding: 12px;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.message-body[b-i6ahu1zyjr] {
    padding: 12px;
}

.message-text[b-i6ahu1zyjr] {
    line-height: 1.4;
    white-space: pre-wrap;
}

.message-footer[b-i6ahu1zyjr] {
    padding: 8px 12px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.message-buttons[b-i6ahu1zyjr] {
    padding: 8px;
    border-top: 1px solid #e9ecef;
    max-height: 200px;
    overflow-y: auto;
}

.whatsapp-button[b-i6ahu1zyjr] {
    color: #075e54 !important;
    border-color: #075e54 !important;
    text-transform: none;
    font-size: 0.8rem;
}

.button-list-overlay[b-i6ahu1zyjr] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(280px, 90vw);
    max-height: min(350px, 70vh);
    overflow-y: auto;
    z-index: 1300;
    background: white;
    border-radius: 8px;
}

.whatsapp-input-bar[b-i6ahu1zyjr] {
    background: #F0E7E0;
    border-top: 1px solid #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
}

.input-field[b-i6ahu1zyjr] {
    flex: 1;
    background: white;
    border-radius: 20px;
    margin-right: 8px;
}

.mic-button[b-i6ahu1zyjr] {
    width: 40px;
    height: 40px;
    background: #075e54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (max-width: 768px) {
    .phone-frame[b-i6ahu1zyjr] {
        width: 250px;
        height: 450px;
    }

    .button-list-overlay[b-i6ahu1zyjr] {
        width: 95vw;
        max-height: 60vh;
    }

    .message-buttons[b-i6ahu1zyjr] {
        max-height: 150px;
    }

    .whatsapp-button[b-i6ahu1zyjr] {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}
/* /Pages/BidChatRUserEdit.razor.rz.scp.css */
.group[b-5lz5ntd7gj] {
    width: 50%;
    margin-bottom: 25px;
}

    .group label[b-5lz5ntd7gj] {
        display: block;
        margin-top: 26px;
        margin-bottom: 10px;
        margin-left: 11%;
    }

    .group input[b-5lz5ntd7gj] {
        border: none;
        outline: none;
        padding: 20px;
        width: calc(100% - 40px);
        border-radius: 10px;
        background-color: #eaeff2;
        color: #3ba62f;
        font-size: 20px;
    }

    .group .power-container[b-5lz5ntd7gj] {
        background-color: darkgray;
        width: 60%;
        height: 4px;
        border-radius: 5px;
        margin-left: 11%;
        margin-bottom: -30px;
    }

        .group .power-container #power-point[b-5lz5ntd7gj] {
            background-color: #D73F40;
            width: 1%;
            height: 100%;
            border-radius: 5px;
            transition: 0.5s;
        }
.fade-in[b-5lz5ntd7gj] {
    animation: fadeIn-b-5lz5ntd7gj 0.6s ease-in;
}

.slide-up[b-5lz5ntd7gj] {
    animation: slideUp-b-5lz5ntd7gj 0.5s ease-out;
}

.hover-lift[b-5lz5ntd7gj] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hover-lift:hover[b-5lz5ntd7gj] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.modern-card[b-5lz5ntd7gj] {
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.section-card[b-5lz5ntd7gj] {
    border-radius: 12px;
    margin-bottom: 24px;
}

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

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

@keyframes slideUp-b-5lz5ntd7gj {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Pages/BidChatRUsers.razor.rz.scp.css */
.fade-in[b-2wt4awgsu6] {
    animation: fadeIn-b-2wt4awgsu6 0.6s ease-in;
}

.slide-up[b-2wt4awgsu6] {
    animation: slideUp-b-2wt4awgsu6 0.5s ease-out;
}

.hover-lift[b-2wt4awgsu6] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hover-lift:hover[b-2wt4awgsu6] {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

.pulse-icon[b-2wt4awgsu6] {
    animation: pulse-b-2wt4awgsu6 2s infinite;
}

@keyframes fadeIn-b-2wt4awgsu6 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideUp-b-2wt4awgsu6 {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

@keyframes pulse-b-2wt4awgsu6 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.modern-card[b-2wt4awgsu6] {
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}
/* /Pages/BillingBulk.razor.rz.scp.css */
/* Modern Page Layout */
.page-container[b-h63mi1zzye] {
    min-height: 100vh;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    animation: fadeIn-b-h63mi1zzye 0.6s ease-out;
}

.breadcrumb-nav[b-h63mi1zzye] {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.page-content[b-h63mi1zzye] {
    padding: 2rem;
    animation: slideUp-b-h63mi1zzye 0.8s ease-out;
}

/* Header Section */
.header-section[b-h63mi1zzye] {
    margin-bottom: 2rem;
}

.header-content[b-h63mi1zzye] {
    padding: 1.5rem 0;
}

.page-title[b-h63mi1zzye] {
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.beta-chip[b-h63mi1zzye] {
    font-size: 0.75rem;
    font-weight: 500;
}

.back-button[b-h63mi1zzye] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-button:hover[b-h63mi1zzye] {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-divider[b-h63mi1zzye] {
    margin-top: 1rem;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

/* Main Content */
.main-content[b-h63mi1zzye] {
    animation: staggerIn-b-h63mi1zzye 0.8s ease-out;
}

.info-alert[b-h63mi1zzye] {
    border-radius: 12px;
    border-left: 4px solid #2196f3;
    animation: slideInLeft-b-h63mi1zzye 0.6s ease-out;
}

/* Cards */
.client-selection-card[b-h63mi1zzye],
.form-card[b-h63mi1zzye],
.validation-card[b-h63mi1zzye],
.status-card[b-h63mi1zzye] {
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.client-selection-card:hover[b-h63mi1zzye],
.form-card:hover[b-h63mi1zzye] {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Loading States */
.loading-container[b-h63mi1zzye] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.loading-text[b-h63mi1zzye] {
    color: #666;
    animation: pulse-b-h63mi1zzye 2s infinite;
}

/* Client Chips */
.client-chips[b-h63mi1zzye] {
    gap: 0.75rem;
    flex-wrap: wrap;
}

.client-chip[b-h63mi1zzye] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    font-weight: 500;
}

.client-chip:hover[b-h63mi1zzye] {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form Elements */
.card-actions[b-h63mi1zzye] {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(248, 249, 250, 0.8);
}

.generate-button[b-h63mi1zzye] {
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.generate-button:hover:not(:disabled)[b-h63mi1zzye] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.generate-button:disabled[b-h63mi1zzye] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Status Content */
.status-content[b-h63mi1zzye] {
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.status-content[b-h63mi1zzye]::-webkit-scrollbar {
    width: 6px;
}

.status-content[b-h63mi1zzye]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.status-content[b-h63mi1zzye]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.status-content[b-h63mi1zzye]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Access Denied */
.access-denied[b-h63mi1zzye] {
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    animation: shake-b-h63mi1zzye 0.6s ease-out;
}

/* Animations */
@keyframes fadeIn-b-h63mi1zzye {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-h63mi1zzye {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft-b-h63mi1zzye {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes staggerIn-b-h63mi1zzye {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-h63mi1zzye {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes shake-b-h63mi1zzye {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-4px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(4px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-content[b-h63mi1zzye] {
        padding: 1rem;
    }
    
    .header-content[b-h63mi1zzye] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .client-chips[b-h63mi1zzye] {
        justify-content: center;
    }
    
    .generate-button[b-h63mi1zzye] {
        width: 100%;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .page-container[b-h63mi1zzye] {
        /*background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);*/
    }
    
    .client-selection-card[b-h63mi1zzye],
    .form-card[b-h63mi1zzye],
    .validation-card[b-h63mi1zzye],
    .status-card[b-h63mi1zzye] {
        background: rgba(45, 55, 72, 0.95);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .status-content[b-h63mi1zzye] {
        background: #2d3748;
        color: #e2e8f0;
    }
}
/* /Pages/BillingReport.razor.rz.scp.css */
.headerFilter[b-c2prnpiwou] {
    display: flex;
    height: 7vh;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: auto;
    margin-left: 10.5%;
    width: 79%
}

    .headerFilter select[b-c2prnpiwou] {
        width: 15%;
        height: 50%;
        margin-top: 1.2%;
        margin-left: 20px;
        font-size: 11px;
        padding-bottom: 4px;
        padding-top: -10px
    }

    .headerFilter button[b-c2prnpiwou] {
        margin-top: 1.4%;
        margin-right: 20px;
        width: 8%;
        height: 50%;
        font-size: 11px;
        padding-top: -10px;
        padding-bottom: 4px;
    }

.bodyReport[b-c2prnpiwou] {
    display: flex;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 20px;
    padding: 10px;
    width: 90%
}

.navTabsStyles[b-c2prnpiwou] {
    margin-bottom: 10px;
    width: 81.5vw;
    margin-left: 120px;
    margin-top: -10px
}

.dateStyles[b-c2prnpiwou] {
    display: flex
}

    .dateStyles input[b-c2prnpiwou] {
        margin-top: 16px;
        margin-left: 10px;
        height: 40%;
        border: 1px solid #cccccc;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px
    }

    .dateStyles p[b-c2prnpiwou] {
        margin-top: 15px;
        margin-left: 20px;
        font-size: 14px
    }

.tableStyles[b-c2prnpiwou] {
    overflow-y: auto;
    overflow-x: auto;
    width: 65%;
    margin-left: -10px;
    font-size: 13px;
    height: 66vh
}

.tableHeader[b-c2prnpiwou] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartHeader[b-c2prnpiwou] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartStyles[b-c2prnpiwou] {
    width: 50%
}

.innerChartStyles[b-c2prnpiwou] {
    max-width: 100%;
    margin-left: -1px;
    margin-top: 80px
}

.nullStyles[b-c2prnpiwou] {
    margin-top: 50px;
    position: absolute;
    margin-left: 32%;
    margin-right: auto;
}
/* /Pages/BillingView.razor.rz.scp.css */
.headerFilter[b-6uyx1ylgb6] {
    display: flex;
    height: 7vh;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: auto;
    margin-left: 10.5%;
    width: 79%
}

    .headerFilter select[b-6uyx1ylgb6] {
        width: 15%;
        height: 50%;
        margin-top: 1.2%;
        margin-left: 20px;
        font-size: 11px;
        padding-bottom: 4px;
        padding-top: -10px
    }

    .headerFilter button[b-6uyx1ylgb6] {
        margin-top: 1.4%;
        margin-right: 20px;
        width: 8%;
        height: 50%;
        font-size: 11px;
        padding-top: -10px;
        padding-bottom: 4px;
    }

.bodyReport[b-6uyx1ylgb6] {
    display: flex;
    overflow-y: hidden;
    overflow-x: hidden;
    margin-bottom: 20px;
    padding: 10px;
    width: 79%
}

.navTabsStyles[b-6uyx1ylgb6] {
    margin-bottom: 10px;
    width: 81.5vw;
    margin-left: 120px;
    margin-top: -10px
}

.dateStyles[b-6uyx1ylgb6] {
    display: flex
}

    .dateStyles input[b-6uyx1ylgb6] {
        margin-top: 16px;
        margin-left: 10px;
        height: 40%;
        border: 1px solid #cccccc;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px
    }

    .dateStyles p[b-6uyx1ylgb6] {
        margin-top: 15px;
        margin-left: 20px;
        font-size: 14px
    }

.tableStyles[b-6uyx1ylgb6] {
    overflow-y: auto;
    overflow-x: auto;
    width: 65%;
    margin-left: -10px;
    font-size: 13px;
    height: 66vh
}

.tableHeader[b-6uyx1ylgb6] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartHeader[b-6uyx1ylgb6] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartStyles[b-6uyx1ylgb6] {
    width: 50%
}

.innerChartStyles[b-6uyx1ylgb6] {
    max-width: 100%;
    margin-left: -1px;
    margin-top: 80px
}

.nullStyles[b-6uyx1ylgb6] {
    margin-top: 50px;
    position: absolute;
    margin-left: 32%;
    margin-right: auto;
}
/* /Pages/ChatPortal.razor.rz.scp.css */
.body[b-9ul8m7e1yk] {
    margin-left: -3%;
    width: 108%;
    margin-top: -10px;
    justify-content: center;
}

/* Create two equal columns that floats next to each other */
.columnLeft[b-9ul8m7e1yk] {
    float: left;
    width: 22%;
    height: 78vh;
    overflow: hidden;
    background: linear-gradient(180deg, #f1f5f9 0%, #e8edf5 60%, #dde4f0 100%);
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 2px 0 12px rgba(59, 130, 246, 0.06);
    margin-bottom: 20px;
}

.columnRight[b-9ul8m7e1yk] {
    float: left;
    width: 60%;
    height: 78vh;
    overflow: hidden;
    padding-right: 0px;
    padding-left: 0px;
    background-color: #ffffff;
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}

.columnRightHeader[b-9ul8m7e1yk] {
   overflow: hidden;
    margin-left: -40px;
    margin-right: -70px;
    height: 70px;
    padding-left: 35px;
    padding-top: 1px;
    background-color: #ffffff;
}

/* Modern Header Styles */
.modern-header[b-9ul8m7e1yk] {
    position: relative;
    /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%) !important;*/
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerSlideDown-b-9ul8m7e1yk 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.modern-header[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    /*background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981);*/
    background-size: 300% 100%;
    animation: headerGradientFlow-b-9ul8m7e1yk 4s ease infinite;
}

.modern-header[b-9ul8m7e1yk]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   /* background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);*/
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-header:hover[b-9ul8m7e1yk]::after {
    opacity: 1;
}

.modern-header:hover[b-9ul8m7e1yk] {
    /*transform: translateY(-1px);*/
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05) !important;*/
}

/* Profile Image Animation */
.modern-header .profileImage[b-9ul8m7e1yk] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-header .profileImage[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.modern-header .profileImage:hover[b-9ul8m7e1yk] {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modern-header .profileImage:hover[b-9ul8m7e1yk]::before {
    opacity: 1;
}

/* Text Animations */
.modern-header p[b-9ul8m7e1yk] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-header p:hover[b-9ul8m7e1yk] {
    transform: translateX(2px);
    color: #3b82f6 !important;
}

/* Message Functions Enhancement */
.modern-header .messageFunctions[b-9ul8m7e1yk] {
    animation: headerControlsSlideIn-b-9ul8m7e1yk 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.modern-header .mud-select[b-9ul8m7e1yk] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px !important;
}

.modern-header .mud-select:hover[b-9ul8m7e1yk] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modern-header .mud-icon-button[b-9ul8m7e1yk] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-header .mud-icon-button[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.modern-header .mud-icon-button:hover[b-9ul8m7e1yk]::before {
    width: 60px;
    height: 60px;
}

.modern-header .mud-icon-button:hover[b-9ul8m7e1yk] {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.modern-header .mud-toggle-icon-button[b-9ul8m7e1yk] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-header .mud-toggle-icon-button:hover[b-9ul8m7e1yk] {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Keyframe Animations */
@keyframes headerSlideDown-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerGradientFlow-b-9ul8m7e1yk {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes headerControlsSlideIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-header[b-9ul8m7e1yk] {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modern-header .messageFunctions[b-9ul8m7e1yk] {
        flex-direction: column;
        gap: 8px;
    }
    
    .modern-header .mud-select[b-9ul8m7e1yk] {
        width: 100% !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modern-header[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%) !important;*/
        /*border-bottom-color: rgba(75, 85, 99, 0.8);*/
    }
    
    .modern-header p:hover[b-9ul8m7e1yk] {
        color: #60a5fa !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .modern-header[b-9ul8m7e1yk],
    .modern-header *[b-9ul8m7e1yk],
    .modern-header[b-9ul8m7e1yk]::before,
    .modern-header[b-9ul8m7e1yk]::after {
        animation: none;
        transition: none;
    }
    
    .modern-header:hover[b-9ul8m7e1yk],
    .modern-header .profileImage:hover[b-9ul8m7e1yk],
    .modern-header .mud-icon-button:hover[b-9ul8m7e1yk] {
        transform: none;
    }
}

/* Focus States */
.modern-header .mud-icon-button:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.modern-header .mud-select:focus-within[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.columnRightComponent[b-9ul8m7e1yk] {
    position: relative;
    height: 100%;
    width: 102%;    
}

.columnRightParentContainer[b-9ul8m7e1yk] {
    display: flex;
    height: 83%;
}

/* Modern Messages Container */
.modern-messages-container[b-9ul8m7e1yk] {
    position: relative;
    overflow: hidden;
   
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: containerFadeIn-b-9ul8m7e1yk 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-messages-container[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.modern-messages-container > *[b-9ul8m7e1yk] {
    position: relative;
    z-index: 2;
}

.modern-messages-container:hover[b-9ul8m7e1yk] {
    transform: translateY(-1px);
   /* box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);*/
}

[b-9ul8m7e1yk]::-webkit-scrollbar {
    display: none;
}

.columnRightContainer[b-9ul8m7e1yk] {
    background: transparent;
    width: 100%;
    margin-top: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 93%;
    margin-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
}

.columnRightContainer[b-9ul8m7e1yk]::-webkit-scrollbar {
    width: 6px;
}

.columnRightContainer[b-9ul8m7e1yk]::-webkit-scrollbar-track {
    background: transparent;
}

.columnRightContainer[b-9ul8m7e1yk]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.5), rgba(107, 114, 128, 0.5));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.columnRightContainer[b-9ul8m7e1yk]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.8), rgba(107, 114, 128, 0.8));
}

.columnRightFooter[b-9ul8m7e1yk] {
    position: absolute;
    overflow: hidden;
    /*height: 70px;*/
    width: 100%;
    background-color: #e6e6e6;
    bottom: 0;
    box-shadow: 0 1px 1px 0 #0d6efd, 0 1px 10px 0 #0d6efd;
}

.columnRightFooterMessageContainer[b-9ul8m7e1yk] {
    display: flex;
    padding-top: 20px;
    padding-left: 10px;
    width: 100% !important;
    margin-right: 10px;
    padding-right: 0px !important;
}

.columnRightFooterMessageContainerSender[b-9ul8m7e1yk] {
    background-color: white;
    margin-top: -25px;
    margin-left: 70px;
    width: 85%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 5px;
    height: 40px;
    position: absolute;
}

.columnButtonSendMessage[b-9ul8m7e1yk] {
    margin-top: -6px;
    position: absolute;
    right: 11%
}

.columnRightFooterMessageContainerButton[b-9ul8m7e1yk] {
    background-color: transparent;
    margin-top: -8px;
    margin-left: 0px;
}

.contact:hover[b-9ul8m7e1yk] {
    background-color: rgba(59, 130, 246, 0.08) !important;
}

.sendMessage[b-9ul8m7e1yk] {
    background-color: transparent;
    cursor: pointer;
    border: 0px;
}

    .sendMessage:hover[b-9ul8m7e1yk] {
        transition: transform .2s;
        /* Animation */
    }

.incoming_msg[b-9ul8m7e1yk] {
    padding-left: 20px;
    animation: messageSlideInLeft-b-9ul8m7e1yk 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.incoming_msg:hover[b-9ul8m7e1yk] {
    transform: translateX(4px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.incoming_msg_img[b-9ul8m7e1yk] {
    display: inline-block;
    width: 55px;
    height: 55px;
}

    .incoming_msg_img img[b-9ul8m7e1yk] {
        width: 45px;
        height: 45px;
    }

.received_msg[b-9ul8m7e1yk] {
    display: inline-block;
    padding: 0px 10px 0 -10px;
    vertical-align: top;
    width: 92%;
}

.received_withd_msg p[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 0 18px 18px 18px;
    color: #475569;
    font-size: 12px;
    margin: 0;
    padding: 8px 14px 8px 16px;
    width: 100%;
    word-wrap: break-word;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.received_withd_msg p[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.received_withd_msg p:hover[b-9ul8m7e1yk] {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.time_date[b-9ul8m7e1yk] {
    color: #94a3b8;
    display: block;
    font-size: 11px;
    margin: 8px 0 0;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.time_date:hover[b-9ul8m7e1yk] {
    opacity: 1;
    color: #64748b;
    transform: translateY(-1px);
}

.received_withd_msg[b-9ul8m7e1yk] {
    width: 57%;
}

.sent_msg p[b-9ul8m7e1yk] {
    border-radius: 18px 0px 18px 18px;
    font-size: 12px;
    margin: 0;
    color: dimgray;
    padding: 8px 14px;
    width: 100%;
    margin-left: 10px;
    height: fit-content;
    word-break: break-word;
    white-space: normal;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sent_msg p[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.sent_msg p:hover[b-9ul8m7e1yk] {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 10px -1px rgba(59, 130, 246, 0.4),
        0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.sent_msg a[b-9ul8m7e1yk] {
    border-radius: 15px 0px 15px 15px;
    font-size: 12px;
    margin: 0;
    padding: 5px;
    color: #fff;
    width: 100%;
    margin-left: 10px;
    height: fit-content;
    word-break: break-all;
    white-space: normal;
}

.outgoing_msg[b-9ul8m7e1yk] {
    overflow: hidden;
    margin: 26px -35px 26px;
    padding-right: 60px;
    margin-left: 10px;
    animation: messageSlideInRight-b-9ul8m7e1yk 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right center;
}

.outgoing_msg:hover[b-9ul8m7e1yk] {
    transform: translateX(-4px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sent_msg[b-9ul8m7e1yk] {
    position: relative;
    float: right;
    width: 47%;
    height: fit-content;
    word-break: break-all;
    white-space: normal;
}

.messaging[b-9ul8m7e1yk] {
    padding: 0 0 50px 0;
}

.msg_history[b-9ul8m7e1yk] {
    overflow-y: auto;
    position: relative
}

@media (max-width: 641px) {
    .profileImage[b-9ul8m7e1yk] {
        visibility: hidden;
    }
}

@media (min-width: 642px) {
    .profileImage[b-9ul8m7e1yk] {
        visibility: visible;
    }
}

.profileImage[b-9ul8m7e1yk] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    color: #d9d9d9;
    text-align: center;
    line-height: 39px;
    margin-top: 15px;
    margin-left: -2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    background-color: #475569;
}

.searchButton[b-9ul8m7e1yk] {
    margin-right: 20px;
    margin-left: -2px
}

.threadList[b-9ul8m7e1yk] {
    width: 100%;
    margin-bottom: 4px;
    margin-left: 3px;
    height: 54vh;
    overflow-y: auto;
    margin-right: 21px;
    background: transparent;
    overflow-x: hidden;
}

.threadContact[b-9ul8m7e1yk] {
    margin-bottom: 10px;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 5px;
    height: 70px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(59, 130, 246, 0.06);
    transition: box-shadow 0.2s ease;
}

.threadContact:hover[b-9ul8m7e1yk] {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(59, 130, 246, 0.1);
}

.threadContactColor[b-9ul8m7e1yk] {
    background-color: #ffd4cc !important;
    margin-bottom: 10px;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 5px;
    height: 70px;
}

.threadContactdiv[b-9ul8m7e1yk] {
    margin-left: -40px;
    margin-top: 5px;
    padding-right: 20px;
    overflow: hidden;
}

.threadContactdivCenter[b-9ul8m7e1yk] {
    flex-direction: column;
    overflow: hidden;
    padding-left: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.threadContactJoinChat[b-9ul8m7e1yk] {
    margin-top: -13px;
    align-self: center;
    font-size: 10px;
    overflow: hidden;
}

.liveAgentChat[b-9ul8m7e1yk] {
    color: #1E88E5;
    font-size: 10px;
    margin-top: -1px;
}

.crmName[b-9ul8m7e1yk] {
    margin-top: -16px;
    align-self: center;
    font-size: 10px;
}

.profileImageMessage[b-9ul8m7e1yk] {
    background-color: #475569;
    margin-left: 20px;
    margin-top: 10px
}

.emptyMessage[b-9ul8m7e1yk] {
    margin-top: 20px;
    overflow: hidden;
    margin-left: -20px;
    animation: fadeInUp-b-9ul8m7e1yk 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    padding: 2rem;
}

    .emptyMessage img[b-9ul8m7e1yk] {
        height: 10%;
        width: 50%;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        transition: all 0.3s ease;
        animation: floatingBubble-b-9ul8m7e1yk 3s ease-in-out infinite;
    }

    .emptyMessage img:hover[b-9ul8m7e1yk] {
        transform: scale(1.05);
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    }

    .emptyMessage p[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #64748b, #475569);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 500;
        letter-spacing: 0.025em;
        animation: textShimmer-b-9ul8m7e1yk 2s ease-in-out infinite alternate;
    }

.emojiItem[b-9ul8m7e1yk] {
    margin-left: 5px;
    cursor: pointer;
    width: 70px;
    font-size: 30px
}

.sidePanel[b-9ul8m7e1yk] {
    display: none;
    width: 35%;
    background-color: white;
    height: 110%;
    border-left: 1px solid white;
    background-color: #e6e6e6;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

.notesStyles[b-9ul8m7e1yk] {
    max-height: 60%;
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: 15px;
}

.notes-panel-header[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 10px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    flex-shrink: 0;
}

.noteslist[b-9ul8m7e1yk] {
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 10px;
    margin-top: 10px
}

.notesInput[b-9ul8m7e1yk] {
    position: absolute;
    bottom: 80px;
    width: 60%;
    margin-left: 15px
}

.search-result-item[b-9ul8m7e1yk] {
    padding: 10px 12px;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.search-result-item[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 3px 0 0 3px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.search-result-item:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    border-color: #bfdbfe;
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.search-result-item:hover[b-9ul8m7e1yk]::before {
    opacity: 1;
}

.search-result-name[b-9ul8m7e1yk] {
    font-size: 11px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
}

.search-result-text[b-9ul8m7e1yk] {
    font-size: 11px;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
    text-wrap: auto;
}

.search-result-time[b-9ul8m7e1yk] {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
}

.search-panel[b-9ul8m7e1yk] {
    display: none;
    width: 35%;
    height: 110%;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-left: 1px solid #e2e8f0;
    flex-direction: column;
    animation: slide 0.5s forwards;
}

.search-panel-header[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 14px 10px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    flex-shrink: 0;
}

.search-panel-title[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.search-panel-title svg[b-9ul8m7e1yk] {
    color: #3b82f6;
}

.search-panel-close[b-9ul8m7e1yk] {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.search-panel-close:hover[b-9ul8m7e1yk] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1);
}

.search-panel-input-wrap[b-9ul8m7e1yk] {
    padding: 12px 12px 6px;
    flex-shrink: 0;
}

.search-panel-field[b-9ul8m7e1yk] {
    width: 100%;
}

.search-panel-count[b-9ul8m7e1yk] {
    display: block;
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    padding: 4px 2px 0;
    letter-spacing: 0.02em;
}

.search-panel-results[b-9ul8m7e1yk] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 10px 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.4) transparent;
}

.search-panel-results[b-9ul8m7e1yk]::-webkit-scrollbar {
    width: 4px;
}

.search-panel-results[b-9ul8m7e1yk]::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.4);
    border-radius: 4px;
}

.search-panel-empty[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 16px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
}

.notesTextArea[b-9ul8m7e1yk] {
    width: 35%;
    margin-bottom: 10px;
    resize: none
}

.notesTextAreaButton[b-9ul8m7e1yk] {
    width: 35%;
}

.showNotesShadows[b-9ul8m7e1yk] {
    margin-top: 12px;
    margin-right: 15px;
    border-radius: 50%;
    width: 70%;
    margin-left: 5px;
}

.imgusericon[b-9ul8m7e1yk] {
    margin-left: -10px;
    margin-top: 0px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    padding-left: 3.4px;
    padding-top: 3.1px
}

.newmessageicon[b-9ul8m7e1yk] {
    position: absolute;
    bottom: 0px;
    margin-left: 20px;
    margin-bottom: 80px;
    cursor: default;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

    .newmessageicon button[b-9ul8m7e1yk] {
        background-color: lightgray
    }

        .newmessageicon button i[b-9ul8m7e1yk] {
            background-color: transparent
        }

    .newmessageicon:hover[b-9ul8m7e1yk] {
        transform: scale(1.1);
    }

.emojiselector:hover[b-9ul8m7e1yk] {
    transform: scale(1.1);
}


.inlineText[b-9ul8m7e1yk] {
    display: flex;
    font-family: monospace;
    background-color: transparent;
    font-size: 20px;
    left: 20%;
    text-align: center;
    padding-left: 30%;
    line-height: 35px;
    letter-spacing: 3px;
}

.notesnotification[b-9ul8m7e1yk] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    position: absolute;
    margin-top: 12px;
    z-index: 10;
    overflow: hidden;
    right: 40px
}

.searchboxstyles[b-9ul8m7e1yk] {
    background-color: white;
    width: 90%;
    margin-left: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
}

.searchboxinputstyles[b-9ul8m7e1yk] {
    width: 85%;
    border: 0px solid #DDD;
    padding-left: 40px;
    box-shadow: none;
}

.searchboxiconstyles[b-9ul8m7e1yk] {
    position: absolute;
    padding-top: 10px;
    padding-left: 10px;
    z-index: 20;
    background-color: transparent
}

.searchboxinputstyles:focus[b-9ul8m7e1yk] {
    outline: 0px !important;
    box-shadow: none !important;
}

.emojiDivSendMessage[b-9ul8m7e1yk] {
    cursor: pointer;
    overflow: hidden;
    margin-left: -16px;
    height: 30px;
    font-size: 20px;
    margin-top: 4px;
    border: 0px;
    z-index: 10;
    position: absolute
}

    .emojiDivSendMessage:hover[b-9ul8m7e1yk] {
        transform: scale(1.1);
    }

.attachDivSendMessage[b-9ul8m7e1yk] {
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
    border: 0px;
    height: 30px;
    margin-top: 4px;
    margin-right: -15px;
    text-align: right;
    padding-left: 5px;
    margin-left: -10px;
    position: absolute
}

.messageinputstyles[b-9ul8m7e1yk] {
    width: 100%
}

.iframestyles[b-9ul8m7e1yk] {
    width: 100%;
    height: 100%;
    border: none;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    .iframestyles .ratio[b-9ul8m7e1yk] {
        display: block;
        width: 100%;
        height: auto;
    }

.iframestylesdiv[b-9ul8m7e1yk] {
    width: 100%;
    height: auto;
    overflow: hidden
}

    .iframestylesdiv img[b-9ul8m7e1yk] {
        width: 100%;
        height: 100%;
        padding-bottom: 15px;
    }

    .iframestylesdiv iframe[b-9ul8m7e1yk] {
        height: 400px;
        width: 100%
    }

.pdfmedia[b-9ul8m7e1yk] {
    height: 400px;
}

.navbartabs[b-9ul8m7e1yk] {
    overflow: hidden;
    margin-left: 2px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-top: -18px;
    font-size: 13px;
}

    .navbartabs li[b-9ul8m7e1yk] {
        overflow: hidden;
        margin-right: 5px;
        border-radius: 5px;
        overflow: hidden;
        white-space: nowrap
    }

        .navbartabs li a[b-9ul8m7e1yk] {
            font-size: 11px;
            padding-bottom: 7px
        }

        .navbartabs li button[b-9ul8m7e1yk] {
            font-size: 11px;
            padding-bottom: 7px
        }

/*.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #808080;
}*/
/* not active (faded) */
.nav-pills .pill-1 .nav-link:not(.active)[b-9ul8m7e1yk] {
    background-color: transparent;
    color: black;
}

.navlinkBM:hover[b-9ul8m7e1yk] {
    background-color: #0d6efd !important;
    color: white !important;
}

/* active (faded) */
.nav-pills .pill-1 .nav-link[b-9ul8m7e1yk] {
    background-color: #0d6efd;
    color: white;
}

/* not active (faded) */
.nav-pills .pill-2 .nav-link:not(.active)[b-9ul8m7e1yk] {
    background-color: transparent;
    color: black;
}

.navlinkWhatsapp:hover[b-9ul8m7e1yk] {
    background-color: #198754 !important;
    color: white !important;
}

/* active (faded) */
.nav-pills .pill-2 .nav-link[b-9ul8m7e1yk] {
    background-color: #198754;
    color: white;
}

/* not active (faded) */
.nav-pills .pill-3 .nav-link:not(.active)[b-9ul8m7e1yk] {
    background-color: transparent;
    color: black;
}

/* active (faded) */
.nav-pills .pill-3 .nav-link[b-9ul8m7e1yk] {
    background-color: #475569;
    color: white;
}

.navlinkChatbox:hover[b-9ul8m7e1yk] {
    background-color: #dd3b1e !important;
    color: white !important;
}

/* not active (faded) */
.nav-pills .pill-4 .nav-link:not(.active)[b-9ul8m7e1yk] {
    background-color: transparent;
    color: black;
}

/* active (faded) */
.nav-pills .pill-4 .nav-link[b-9ul8m7e1yk] {
    background-color: #dd3b1e;
    color: white;
}

.checkstyle[b-9ul8m7e1yk] {
    font-size: 12px;
    background-color: transparent;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.checkstyle:hover[b-9ul8m7e1yk] {
    color: #3b82f6;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.previewParent[b-9ul8m7e1yk] {
    position: absolute;
    width: 58%;
    height: 50%;
    background-color: white;
    bottom: 75px;
    right: 3%;
    z-index: 88;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

    .previewParent button[b-9ul8m7e1yk] {
        background-color: white;
        border: 0px;
        color: black;
        margin-right: 5px;
        margin-top: 4px
    }

    .previewParent p[b-9ul8m7e1yk] {
        background-color: white;
        border: 0px;
        color: black;
        margin-left: 5px;
        padding-top: 7px
    }

.previewChild[b-9ul8m7e1yk] {
    margin-top: -5px;
    width: 100%;
    height: 200px;
}

.select[b-9ul8m7e1yk] {
    background-color: red !important
}

/* not active (faded) */
.nav-pills .pill-smiley .nav-link:not(.active)[b-9ul8m7e1yk] {
    background-color: transparent;
    color: black;
}

/* active (faded) */
.nav-pills .pill-smiley .nav-link[b-9ul8m7e1yk] {
    background-color: #475569;
    color: white;
}

.noteItem[b-9ul8m7e1yk] {
    margin-left: 5px;
    background-color: #f2f2f2;
    border: 0px solid #f2f2f2;
}

.sendMessageComponent[b-9ul8m7e1yk] {
}

.title[b-9ul8m7e1yk] {
    margin-left: 120px;
    margin-top: 1.5%;
    color: #595959;
    margin-bottom: -10px
}

.divider[b-9ul8m7e1yk] {
    margin-left: 100px;
    margin-right: 80px
}

.messageFunctions[b-9ul8m7e1yk] {
    display: flex;
    background-color: transparent;
    width: auto;
    float: right;
    margin-right: calc(100vw - 95.6vw);
    margin-top: 5px
}

.sendMessageIcons[b-9ul8m7e1yk] {
    overflow: hidden;
    background-color: transparent;
    width: calc(100vw - 98vw);
    margin-top: -2px
}

.sendmessageicon[b-9ul8m7e1yk] {
    position: absolute;
    cursor: default;
    color: black;
    background-color: transparent;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 4px;
    font-size: 10px;
    top: 0;
    height: 20px;
    font-weight: 500
}

.headerBar[b-9ul8m7e1yk] {
    width: 90%;
    margin-left: -50px
}

.headerBarTitle[b-9ul8m7e1yk] {
    margin-left: 8%
}

/* Modern Sidebar Styles */
.modern-sidebar[b-9ul8m7e1yk] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Search Controls Container */
.search-controls-container[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    animation: slideInDown-b-9ul8m7e1yk 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

    .search-controls-container:hover[b-9ul8m7e1yk] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        border-color: rgba(255,255,255,0.2);
    }

/* Search Wrapper */
.search-wrapper[b-9ul8m7e1yk] {
    flex: 1;
    position: relative;
}

.modern-search[b-9ul8m7e1yk] {
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

    .modern-search:focus-within[b-9ul8m7e1yk] {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

/* Action Buttons */
.action-buttons[b-9ul8m7e1yk] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.modern-action-btn[b-9ul8m7e1yk] {
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

    .modern-action-btn[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
        transition: all 0.4s ease;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .modern-action-btn:hover[b-9ul8m7e1yk]::before {
        width: 100px;
        height: 100px;
    }

    .modern-action-btn:hover[b-9ul8m7e1yk] {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

.filter-btn:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.chat-btn:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%) !important;
}

/* Keyframe Animations */
@keyframes slideInDown-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer-b-9ul8m7e1yk {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Advanced Message Animations */
@keyframes containerFadeIn-b-9ul8m7e1yk {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px) scale(0.98);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes messageSlideInLeft-b-9ul8m7e1yk {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
        filter: blur(5px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes messageSlideInRight-b-9ul8m7e1yk {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.8);
        filter: blur(5px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(-5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes messageGlow-b-9ul8m7e1yk {
    0%, 100% {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }
}

@keyframes floatingBubble-b-9ul8m7e1yk {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-2px) rotate(1deg);
    }
    66% {
        transform: translateY(1px) rotate(-1deg);
    }
}

@keyframes textShimmer-b-9ul8m7e1yk {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Loading Animation */
.loading-shimmer[b-9ul8m7e1yk] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer-b-9ul8m7e1yk 1.5s infinite;
}

/* Smooth Transitions for All Elements */
.modern-sidebar *[b-9ul8m7e1yk] {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-controls-container[b-9ul8m7e1yk] {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .action-buttons[b-9ul8m7e1yk] {
        width: 100%;
        justify-content: center;
    }

    .modern-messages-container[b-9ul8m7e1yk] {
        border-radius: 12px;
        margin: 8px;
    }

    .received_withd_msg p[b-9ul8m7e1yk],
    .sent_msg p[b-9ul8m7e1yk] {
        border-radius: 12px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .incoming_msg[b-9ul8m7e1yk],
    .outgoing_msg[b-9ul8m7e1yk] {
        margin: 16px 0;
    }
}

@media (max-width: 480px) {
    .modern-messages-container[b-9ul8m7e1yk] {
        margin: 4px;
    }

    .received_withd_msg p[b-9ul8m7e1yk],
    .sent_msg p[b-9ul8m7e1yk] {
        border-radius: 8px;
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* Enhanced Focus States */
.modern-action-btn:focus[b-9ul8m7e1yk] {
    outline: 2px solid rgba(66, 165, 245, 0.5);
    outline-offset: 2px;
}

/* Micro-interactions */
.modern-sidebar .mud-button:active[b-9ul8m7e1yk] {
    transform: scale(0.95);
}

/* Glass morphism effect */
.search-controls-container[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    border-radius: inherit;
    pointer-events: none;
}

/* Performance Optimizations */
.modern-messages-container[b-9ul8m7e1yk],
.modern-messages-container *[b-9ul8m7e1yk],
.incoming_msg[b-9ul8m7e1yk],
.outgoing_msg[b-9ul8m7e1yk],
.received_withd_msg p[b-9ul8m7e1yk],
.sent_msg p[b-9ul8m7e1yk] {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .modern-messages-container[b-9ul8m7e1yk],
    .incoming_msg[b-9ul8m7e1yk],
    .outgoing_msg[b-9ul8m7e1yk],
    .received_withd_msg p[b-9ul8m7e1yk],
    .sent_msg p[b-9ul8m7e1yk],
    .emptyMessage img[b-9ul8m7e1yk] {
        animation: none;
        transition: none;
    }

    .modern-messages-container:hover[b-9ul8m7e1yk],
    .incoming_msg:hover[b-9ul8m7e1yk],
    .outgoing_msg:hover[b-9ul8m7e1yk],
    .received_withd_msg p:hover[b-9ul8m7e1yk],
    .sent_msg p:hover[b-9ul8m7e1yk] {
        transform: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .modern-messages-container[b-9ul8m7e1yk] {
        margin-top: 5px
    }

    .received_withd_msg p[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #edebe6 0%, white 100%);
        color: #545351;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .time_date[b-9ul8m7e1yk] {
        color: #9ca3af;
    }

    .time_date:hover[b-9ul8m7e1yk] {
        color: #d1d5db;
    }

    .emptyMessage p[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #9ca3af, #d1d5db);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Modern Send Message Styles */
.modern-send-status[b-9ul8m7e1yk] {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    animation: slideInDown-b-9ul8m7e1yk 0.4s ease-out;
}

.send-indicator[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-loader[b-9ul8m7e1yk] {
    display: flex;
    gap: 4px;
}

.pulse-dot[b-9ul8m7e1yk] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    animation: pulse-b-9ul8m7e1yk 1.4s ease-in-out infinite both;
}

    .pulse-dot:nth-child(1)[b-9ul8m7e1yk] {
        animation-delay: -0.32s;
    }

    .pulse-dot:nth-child(2)[b-9ul8m7e1yk] {
        animation-delay: -0.16s;
    }

    .pulse-dot:nth-child(3)[b-9ul8m7e1yk] {
        animation-delay: 0s;
    }

.send-text[b-9ul8m7e1yk] {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.modern-send-button[b-9ul8m7e1yk] {
    position: relative;
    display: flex;
    align-items: center;
}

.send-btn-animated[b-9ul8m7e1yk] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

    .send-btn-animated:hover[b-9ul8m7e1yk] {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
    }

    .send-btn-animated:active[b-9ul8m7e1yk] {
        transform: translateY(0) scale(0.98);
        transition: all 0.1s ease;
    }

    .send-btn-animated:disabled[b-9ul8m7e1yk] {
        opacity: 0.6;
        transform: none !important;
        cursor: not-allowed;
    }

    .send-btn-animated[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
        transform: translate(-50%, -50%);
    }

    .send-btn-animated:active[b-9ul8m7e1yk]::before {
        width: 300px;
        height: 300px;
        top: 50%;
        left: 50%;
    }

/* Animations */
@keyframes slideInDown-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

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

@keyframes pulse-b-9ul8m7e1yk {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Success animation for sent messages */
.message-sent-success[b-9ul8m7e1yk] {
    animation: messageSent-b-9ul8m7e1yk 0.6s ease-out;
}

@keyframes messageSent-b-9ul8m7e1yk {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Modern input focus styles */
.sendmessagedivinputstyles:focus[b-9ul8m7e1yk] {
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
    transition: all 0.3s ease;
}

/* Enhanced attachment buttons */
.attachDivSendMessage[b-9ul8m7e1yk] {
    transition: all 0.3s ease;
    border-radius: 12px !important;
}

    .attachDivSendMessage:hover[b-9ul8m7e1yk] {
        background-color: #f8f9fa !important;
        transform: translateY(-1px);
    }

/* Emoji selector enhancement */
.emojiselector[b-9ul8m7e1yk] {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 8px;
}

    .emojiselector:hover[b-9ul8m7e1yk] {
        background-color: #f8f9fa;
        transform: translateY(-1px);
    }

/* Loading state for the entire footer */
.columnRightFooter.sending[b-9ul8m7e1yk] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer-b-9ul8m7e1yk 2s infinite;
}

@keyframes shimmer-b-9ul8m7e1yk {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-send-status[b-9ul8m7e1yk] {
        top: -50px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .send-btn-animated[b-9ul8m7e1yk] {
        width: 40px !important;
        height: 40px !important;
    }
}

/* ===== MODERN MODAL STYLES ===== */

/* Modal Base Styles */
.modern-modal[b-9ul8m7e1yk] {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-modal.show[b-9ul8m7e1yk] {
    animation: modalBackdropFadeIn-b-9ul8m7e1yk 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-modal-dialog[b-9ul8m7e1yk] {
    transform: scale(0.9) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 480px;
    margin: 1.75rem auto;
}

.modern-modal.show .modern-modal-dialog[b-9ul8m7e1yk] {
    transform: scale(1) translateY(0);
    animation: modalSlideIn-b-9ul8m7e1yk 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Content */
.modern-modal-content[b-9ul8m7e1yk] {
    border: none;
    border-radius: 20px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    position: relative;
}

.modern-modal-content[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 300% 100%;
    animation: gradientShift-b-9ul8m7e1yk 3s ease infinite;
}

/* Modal Header */
.modern-modal-header[b-9ul8m7e1yk] {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px 28px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.modal-icon-container[b-9ul8m7e1yk] {
    flex-shrink: 0;
    animation: iconPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

.modal-icon[b-9ul8m7e1yk] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.warning-icon[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.warning-icon[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerEffect-b-9ul8m7e1yk 2s infinite;
}

.modal-title-container[b-9ul8m7e1yk] {
    flex: 1;
    min-width: 0;
}

.modern-modal-title[b-9ul8m7e1yk] {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.modal-subtitle[b-9ul8m7e1yk] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.modern-btn-close[b-9ul8m7e1yk] {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modern-btn-close:hover[b-9ul8m7e1yk] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.05);
}

.modern-btn-close:active[b-9ul8m7e1yk] {
    transform: scale(0.95);
}

/* Modal Body */
.modern-modal-body[b-9ul8m7e1yk] {
    padding: 28px;
    background: white;
}

.confirmation-content[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.warning-message[b-9ul8m7e1yk] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.warning-message[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

.message-icon[b-9ul8m7e1yk] {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #d97706;
    animation: warningPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

.message-text h6[b-9ul8m7e1yk] {
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.message-text p[b-9ul8m7e1yk] {
    font-size: 14px;
    color: #a16207;
    margin: 0;
    line-height: 1.5;
}

.consequences-list[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consequence-item[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    animation: slideInUp-b-9ul8m7e1yk 0.6s ease-out;
    animation-fill-mode: both;
}

.consequence-item:nth-child(1)[b-9ul8m7e1yk] {
    animation-delay: 0.1s;
}

.consequence-item:nth-child(2)[b-9ul8m7e1yk] {
    animation-delay: 0.2s;
}

.consequence-item:hover[b-9ul8m7e1yk] {
    transform: translateX(4px);
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consequence-icon[b-9ul8m7e1yk] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consequence-item span[b-9ul8m7e1yk] {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

/* Modal Footer */
.modern-modal-footer[b-9ul8m7e1yk] {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 20px 28px 28px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(241, 245, 249, 0.9) 100%);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Modern Buttons */
.modern-btn[b-9ul8m7e1yk] {
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    cursor: pointer;
    text-decoration: none;
}

.modern-btn[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.modern-btn:active[b-9ul8m7e1yk]::before {
    width: 300px;
    height: 300px;
}

.btn-cancel[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #64748b;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn-cancel:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-confirm[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-confirm:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.btn-confirm:active[b-9ul8m7e1yk] {
    transform: translateY(0);
}

.btn-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon[b-9ul8m7e1yk] {
    transition: transform 0.3s ease;
}

.btn-confirm:hover .btn-icon[b-9ul8m7e1yk] {
    transform: rotate(90deg);
}

.btn-text[b-9ul8m7e1yk] {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes modalBackdropFadeIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn-b-9ul8m7e1yk {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-40px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes gradientShift-b-9ul8m7e1yk {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes iconPulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmerEffect-b-9ul8m7e1yk {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes warningPulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes slideInUp-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .modern-modal-dialog[b-9ul8m7e1yk] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modern-modal-header[b-9ul8m7e1yk] {
        padding: 20px 20px 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .modern-modal-body[b-9ul8m7e1yk] {
        padding: 20px;
    }
    
    .modern-modal-footer[b-9ul8m7e1yk] {
        padding: 16px 20px 20px;
        flex-direction: column;
    }
    
    .modern-btn[b-9ul8m7e1yk] {
        width: 100%;
        min-width: auto;
    }
    
    .warning-message[b-9ul8m7e1yk] {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .consequence-item[b-9ul8m7e1yk] {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .modern-modal-content[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, #1f2937 0%, #111827 100%);*/
        box-shadow: 
            0 25px 50px -12px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .modern-modal-header[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.9) 100%);*/
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .modern-modal-title[b-9ul8m7e1yk] {
        color: #111827;
    }
    
    .modal-subtitle[b-9ul8m7e1yk] {
        color: #9ca3af;
    }

    .modern-modal-body[b-9ul8m7e1yk] {
        background: white;
    }
    
    .modern-modal-footer[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(17, 24, 39, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%);*/
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .warning-message[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-color: rgba(251, 191, 36, 0.3);
    }

    .message-text h6[b-9ul8m7e1yk] {
        color: #111827;
    }

    .message-text p[b-9ul8m7e1yk] {
        color: #111827;
    }
    
    .consequence-item[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, rgba(55, 65, 81, 0.5) 0%, rgba(75, 85, 99, 0.3) 100%);
        border-color: rgba(156, 163, 175, 0.2);
    }
    
    .consequence-item span[b-9ul8m7e1yk] {
        color: #d1d5db;
    }
    
    .consequence-icon[b-9ul8m7e1yk] {
        color: #9ca3af;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .modern-modal-dialog[b-9ul8m7e1yk],
    .modern-modal-content[b-9ul8m7e1yk],
    .modern-btn[b-9ul8m7e1yk],
    .consequence-item[b-9ul8m7e1yk],
    .modal-icon-container[b-9ul8m7e1yk],
    .message-icon[b-9ul8m7e1yk] {
        animation: none;
        transition: none;
    }
    
    .modern-modal.show .modern-modal-dialog[b-9ul8m7e1yk] {
        transform: scale(1) translateY(0);
    }
    
    .modern-btn:hover[b-9ul8m7e1yk],
    .consequence-item:hover[b-9ul8m7e1yk] {
        transform: none;
    }
}

/* Focus States for Accessibility */
.modern-btn:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.modern-btn-close:focus[b-9ul8m7e1yk] {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .modern-modal-content[b-9ul8m7e1yk] {
        border: 2px solid #000;
    }
    
    .modern-btn[b-9ul8m7e1yk] {
        border: 2px solid currentColor;
    }
    
    .warning-message[b-9ul8m7e1yk] {
        border: 2px solid #d97706;
    }
}
/* ===== MODERN EMOJI MODAL STYLES ===== */

/* Emoji Modal Base */
.modern-emoji-modal[b-9ul8m7e1yk] {
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-emoji-modal.show[b-9ul8m7e1yk] {
    animation: emojiModalFadeIn-b-9ul8m7e1yk 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.emoji-modal-dialog[b-9ul8m7e1yk] {
    transform: scale(0.8) translateY(-30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 520px;
    margin: 1.75rem auto;
}

.modern-emoji-modal.show .emoji-modal-dialog[b-9ul8m7e1yk] {
    transform: scale(1) translateY(0);
    animation: emojiModalSlideIn-b-9ul8m7e1yk 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Emoji Modal Content */
.emoji-modal-content[b-9ul8m7e1yk] {
    border: none;
    border-radius: 24px;
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.emoji-modal-content[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 400% 100%;
    animation: rainbowShift-b-9ul8m7e1yk 4s ease infinite;
}

/* Emoji Modal Header */
.emoji-modal-header[b-9ul8m7e1yk] {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 28px 20px;
   /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);*/
    position: relative;
}

.emoji-header-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.emoji-icon-container[b-9ul8m7e1yk] {
    flex-shrink: 0;
    animation: emojiFloat-b-9ul8m7e1yk 3s ease-in-out infinite;
}

.emoji-main-icon[b-9ul8m7e1yk] {
    font-size: 32px;
    animation: emojiRotate-b-9ul8m7e1yk 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.emoji-title-container[b-9ul8m7e1yk] {
    flex: 1;
}

.emoji-modal-title[b-9ul8m7e1yk] {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emoji-subtitle[b-9ul8m7e1yk] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
    opacity: 0.8;
}

.modern-emoji-close[b-9ul8m7e1yk] {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modern-emoji-close:hover[b-9ul8m7e1yk] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

/* Emoji Tabs Container */
.emoji-tabs-container[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.emoji-tabs-container[b-9ul8m7e1yk]::-webkit-scrollbar {
    display: none;
}

.emoji-nav-tabs[b-9ul8m7e1yk] {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    min-width: max-content;
}

.emoji-tab-item[b-9ul8m7e1yk] {
    flex-shrink: 0;
}

.emoji-tab-btn[b-9ul8m7e1yk] {
    background: transparent;
    border: none;
    border-radius: 16px 16px 0 0;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 80px;
    cursor: pointer;
}

.emoji-tab-btn[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.emoji-tab-btn.active[b-9ul8m7e1yk]::before {
    width: 100%;
}

.emoji-tab-btn:hover[b-9ul8m7e1yk] {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.emoji-tab-btn.active[b-9ul8m7e1yk] {
    background: white;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

.tab-emoji[b-9ul8m7e1yk] {
    font-size: 24px;
    transition: all 0.3s ease;
    animation: tabEmojiPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

.emoji-tab-btn:hover .tab-emoji[b-9ul8m7e1yk] {
    transform: scale(1.2);
    animation-play-state: paused;
}

.emoji-tab-btn.active .tab-emoji[b-9ul8m7e1yk] {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.tab-label[b-9ul8m7e1yk] {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.emoji-tab-btn.active .tab-label[b-9ul8m7e1yk] {
    color: #475569;
}

/* Emoji Modal Body */
.emoji-modal-body[b-9ul8m7e1yk] {
    padding: 0;
    background: white;
    max-height: 320px;
    overflow: hidden;
}

.emoji-tab-content[b-9ul8m7e1yk] {
    height: 320px;
}

.tab-pane[b-9ul8m7e1yk] {
    height: 56vh;
    overflow: auto;
    padding: 10px;
    animation: tabContentSlide-b-9ul8m7e1yk 0.4s ease-out;
}

.emoji-grid[b-9ul8m7e1yk] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
    gap: 8px;
    height: 280px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.3) transparent;
}

.emoji-grid[b-9ul8m7e1yk]::-webkit-scrollbar {
    width: 6px;
}

.emoji-grid[b-9ul8m7e1yk]::-webkit-scrollbar-track {
    background: transparent;
}

.emoji-grid[b-9ul8m7e1yk]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.3), rgba(107, 114, 128, 0.3));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.emoji-grid[b-9ul8m7e1yk]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.6), rgba(107, 114, 128, 0.6));
}

/* Emoji Items */
.emoji-item[b-9ul8m7e1yk] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 1px solid rgba(0, 0, 0, 0.04);
    animation: emojiItemFadeIn-b-9ul8m7e1yk 0.6s ease-out;
    animation-fill-mode: both;
}

.emoji-item:nth-child(odd)[b-9ul8m7e1yk] {
    animation-delay: calc(var(--item-index, 0) * 0.02s);
}

.emoji-item:nth-child(even)[b-9ul8m7e1yk] {
    animation-delay: calc(var(--item-index, 0) * 0.02s + 0.1s);
}

.emoji-item[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.emoji-item:hover[b-9ul8m7e1yk]::before {
    width: 60px;
    height: 60px;
}

.emoji-item:hover[b-9ul8m7e1yk] {
    transform: scale(1.2) translateY(-4px);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(102, 126, 234, 0.2);
    z-index: 10;
}

.emoji-item:active[b-9ul8m7e1yk] {
    transform: scale(1.1) translateY(-2px);
    transition: all 0.1s ease;
}

.emoji-char[b-9ul8m7e1yk] {
    font-size: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.emoji-item:hover .emoji-char[b-9ul8m7e1yk] {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: emojiWiggle-b-9ul8m7e1yk 0.6s ease-in-out;
}

/* Emoji Modal Footer */
.emoji-modal-footer[b-9ul8m7e1yk] {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 28px 28px;
   /* background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);*/
    display: flex;
    justify-content: center;
}

.modern-emoji-btn[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.modern-emoji-btn[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.modern-emoji-btn:active[b-9ul8m7e1yk]::before {
    width: 300px;
    height: 300px;
}

.modern-emoji-btn:hover[b-9ul8m7e1yk] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

/* Animations */
@keyframes emojiModalFadeIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes emojiModalSlideIn-b-9ul8m7e1yk {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(-50px) rotateX(10deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translateY(-10px) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
    }
}

@keyframes rainbowShift-b-9ul8m7e1yk {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes emojiFloat-b-9ul8m7e1yk {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes emojiRotate-b-9ul8m7e1yk {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes tabEmojiPulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes tabContentSlide-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes emojiItemFadeIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes emojiWiggle-b-9ul8m7e1yk {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-3deg);
    }
    75% {
        transform: rotate(3deg);
    }
}

/* Responsive Design */
@media (max-width: 576px) {
    .emoji-modal-dialog[b-9ul8m7e1yk] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .emoji-modal-header[b-9ul8m7e1yk] {
        padding: 20px 20px 16px;
    }
    
    .emoji-header-content[b-9ul8m7e1yk] {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .emoji-tabs-container[b-9ul8m7e1yk] {
        padding: 12px 16px 0;
    }
    
    .emoji-nav-tabs[b-9ul8m7e1yk] {
        gap: 4px;
    }
    
    .emoji-tab-btn[b-9ul8m7e1yk] {
        min-width: 60px;
        padding: 8px 12px;
    }
    
    .tab-emoji[b-9ul8m7e1yk] {
        font-size: 20px;
    }
    
    .tab-label[b-9ul8m7e1yk] {
        font-size: 10px;
    }
    
    .emoji-grid[b-9ul8m7e1yk] {
        grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
        gap: 6px;
    }
    
    .emoji-item[b-9ul8m7e1yk] {
        width: 44px;
        height: 44px;
    }
    
    .emoji-char[b-9ul8m7e1yk] {
        font-size: 24px;
    }
    
    .emoji-modal-footer[b-9ul8m7e1yk] {
        padding: 16px 20px 20px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .emoji-modal-content[b-9ul8m7e1yk] {
      /*  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);*/
        box-shadow: 
            0 32px 64px -12px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .emoji-modal-header[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);*/
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .emoji-subtitle[b-9ul8m7e1yk] {
        color: #9ca3af;
    }
    
    .emoji-tabs-container[b-9ul8m7e1yk] {
       /* background: linear-gradient(135deg, #374151 0%, #1f2937 100%);*/
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .emoji-tab-btn[b-9ul8m7e1yk] {
        color: #d1d5db;
    }

        .emoji-tab-btn:hover[b-9ul8m7e1yk] {
            background: white;
        }

        .emoji-tab-btn.active[b-9ul8m7e1yk] {
            background: white;
            color: rgba(55, 65, 81, 0.8);
        }
    
    .tab-label[b-9ul8m7e1yk] {
        color: #9ca3af;
    }
    
    .emoji-tab-btn.active .tab-label[b-9ul8m7e1yk] {
        color: #d1d5db;
    }
    
    .emoji-modal-body[b-9ul8m7e1yk] {
        /*background: #1f2937;*/
    }
    
    .emoji-item[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(55, 65, 81, 0.8) 0%, rgba(75, 85, 99, 0.6) 100%);*/
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .emoji-item:hover[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, #374151 0%, #4b5563 100%);*/
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.3),
            0 0 0 2px rgba(102, 126, 234, 0.3);
    }
    
    .emoji-modal-footer[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);*/
        border-top-color: rgba(255, 255, 255, 0.1);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .emoji-modal-dialog[b-9ul8m7e1yk],
    .emoji-main-icon[b-9ul8m7e1yk],
    .tab-emoji[b-9ul8m7e1yk],
    .emoji-item[b-9ul8m7e1yk],
    .emoji-char[b-9ul8m7e1yk] {
        animation: none;
        transition: none;
    }
    
    .modern-emoji-modal.show .emoji-modal-dialog[b-9ul8m7e1yk] {
        transform: scale(1) translateY(0);
    }
    
    .emoji-item:hover[b-9ul8m7e1yk],
    .emoji-tab-btn:hover[b-9ul8m7e1yk] {
        transform: none;
    }
}

/* Focus States */
.emoji-tab-btn:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.emoji-item:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.modern-emoji-btn:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .emoji-modal-content[b-9ul8m7e1yk] {
        border: 2px solid #000;
    }
    
    .emoji-item[b-9ul8m7e1yk] {
        border: 2px solid currentColor;
    }
    
    .emoji-tab-btn[b-9ul8m7e1yk] {
        border: 1px solid currentColor;
    }
}

/* ===== MODERN HANDOVER MODAL STYLES ===== */

/* Handover Modal Base */
.modern-handover-modal[b-9ul8m7e1yk] {
    backdrop-filter: blur(12px);
    background-color: rgba(0, 0, 0, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-handover-modal.show[b-9ul8m7e1yk] {
    animation: handoverModalFadeIn-b-9ul8m7e1yk 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.handover-modal-dialog[b-9ul8m7e1yk] {
    transform: scale(0.85) translateY(-40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 850px;
    margin: 1.75rem auto;
}

.modern-handover-modal.show .handover-modal-dialog[b-9ul8m7e1yk] {
    transform: scale(1) translateY(0);
    animation: handoverModalSlideIn-b-9ul8m7e1yk 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Handover Modal Content */
.handover-modal-content[b-9ul8m7e1yk] {
    border: none;
    border-radius: 24px;
    box-shadow: 
        0 32px 64px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.handover-modal-content[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #10b981, #f59e0b, #ef4444);
    background-size: 400% 100%;
    animation: handoverGradientShift-b-9ul8m7e1yk 4s ease infinite;
}

/* Handover Modal Header */
.handover-modal-header[b-9ul8m7e1yk] {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 28px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    position: relative;
}

.handover-header-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.handover-icon-container[b-9ul8m7e1yk] {
    flex-shrink: 0;
    animation: handoverIconFloat-b-9ul8m7e1yk 3s ease-in-out infinite;
}

.handover-main-icon[b-9ul8m7e1yk] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.handover-main-icon[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: handoverShimmerEffect-b-9ul8m7e1yk 2s infinite;
}

.handover-title-container[b-9ul8m7e1yk] {
    flex: 1;
}

.handover-modal-title[b-9ul8m7e1yk] {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1.3;
    letter-spacing: -0.025em;
}

.handover-subtitle[b-9ul8m7e1yk] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
    opacity: 0.8;
}

.modern-handover-close[b-9ul8m7e1yk] {
    background: rgba(0, 0, 0, 0.04);
    border: none;
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.modern-handover-close:hover[b-9ul8m7e1yk] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

/* Handover Modal Body */
.handover-modal-body[b-9ul8m7e1yk] {
    padding: 20px 24px;
    background: white;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.3) transparent;
}

.handover-body-grid[b-9ul8m7e1yk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.handover-right-col[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selected-agent-chip[b-9ul8m7e1yk] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.agent-item-selected[b-9ul8m7e1yk] {
    border-color: rgba(59, 130, 246, 0.6) !important;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
}

@media (max-width: 600px) {
    .handover-body-grid[b-9ul8m7e1yk] {
        grid-template-columns: 1fr;
    }
}

.handover-modal-body[b-9ul8m7e1yk]::-webkit-scrollbar {
    width: 6px;
}

.handover-modal-body[b-9ul8m7e1yk]::-webkit-scrollbar-track {
    background: transparent;
}

.handover-modal-body[b-9ul8m7e1yk]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.3), rgba(107, 114, 128, 0.3));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.handover-modal-body[b-9ul8m7e1yk]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.6), rgba(107, 114, 128, 0.6));
}

/* Handover Sections */
.handover-section[b-9ul8m7e1yk] {
    margin-bottom: 0;
    animation: handoverSectionSlideIn-b-9ul8m7e1yk 0.6s ease-out;
    animation-fill-mode: both;
}

.handover-section:nth-child(1)[b-9ul8m7e1yk] {
    animation-delay: 0.1s;
}

.handover-section:nth-child(2)[b-9ul8m7e1yk] {
    animation-delay: 0.2s;
}

.handover-section:nth-child(3)[b-9ul8m7e1yk] {
    animation-delay: 0.3s;
}

.section-header[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-icon[b-9ul8m7e1yk] {
    width: 24px;
    height: 24px;
    color: #3b82f6;
    flex-shrink: 0;
}

.section-title[b-9ul8m7e1yk] {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Queue Section */
.queue-section[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.queue-section[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

.queue-option[b-9ul8m7e1yk] {
    margin-top: 12px;
}

/* Custom Checkbox */
.custom-checkbox-container[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.custom-checkbox[b-9ul8m7e1yk] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #3b82f6;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.custom-checkbox:checked[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: #1d4ed8;
    transform: scale(1.1);
}

.custom-checkbox:hover[b-9ul8m7e1yk] {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-icon[b-9ul8m7e1yk] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

.custom-checkbox:checked .checkbox-icon[b-9ul8m7e1yk] {
    transform: translate(-50%, -50%) scale(1);
}

.custom-checkbox-label[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    transition: color 0.3s ease;
}

.custom-checkbox-label:hover[b-9ul8m7e1yk] {
    color: #3b82f6;
}

.checkbox-text[b-9ul8m7e1yk] {
    user-select: none;
}

/* Agents Section */
.agents-section[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    position: relative;
    overflow: hidden;
}

.agents-section[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

/* Loading Container */
.loading-container[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px;
}

.loading-spinner[b-9ul8m7e1yk] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: handoverSpinner-b-9ul8m7e1yk 1s linear infinite;
}

.loading-text[b-9ul8m7e1yk] {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Search Container */
.search-container[b-9ul8m7e1yk] {
    margin-bottom: 20px;
}

.search-input-wrapper[b-9ul8m7e1yk] {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon[b-9ul8m7e1yk] {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    z-index: 1;
}

.search-input[b-9ul8m7e1yk] {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 2px solid rgba(156, 163, 175, 0.2);
    border-radius: 12px;
    font-size: 14px;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus[b-9ul8m7e1yk] {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-input[b-9ul8m7e1yk]::placeholder {
    color: #9ca3af;
}

/* Agents List */
.agents-list-container[b-9ul8m7e1yk] {
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.3) transparent;
}

.agents-list-container[b-9ul8m7e1yk]::-webkit-scrollbar {
    width: 6px;
}

.agents-list-container[b-9ul8m7e1yk]::-webkit-scrollbar-track {
    background: transparent;
}

.agents-list-container[b-9ul8m7e1yk]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.3), rgba(107, 114, 128, 0.3));
    border-radius: 10px;
}

/* Agent Item */
.agent-item[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.8) 100%);
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.agent-item[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.agent-item:hover[b-9ul8m7e1yk]::before {
    left: 100%;
}

.agent-item:hover[b-9ul8m7e1yk] {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.agent-item:active[b-9ul8m7e1yk] {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Agent Avatar */
.agent-avatar[b-9ul8m7e1yk] {
    flex-shrink: 0;
}

.avatar-circle[b-9ul8m7e1yk] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.avatar-circle.manager[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.avatar-circle[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agent-item:hover .avatar-circle[b-9ul8m7e1yk]::before {
    opacity: 1;
}

/* Agent Info */
.agent-info[b-9ul8m7e1yk] {
    flex: 1;
    min-width: 0;
}

.agent-name[b-9ul8m7e1yk] {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agent-branch[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.manager-badge[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-name[b-9ul8m7e1yk] {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Agent Status */
.agent-status[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.status-indicator[b-9ul8m7e1yk] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: handoverStatusPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

.status-indicator.available[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

    .status-indicator.not.available[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #c5223a 0%, #a31626 100%);
        box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
    }

.status-text[b-9ul8m7e1yk] {
    font-size: 12px;
    color: #16a34a;
    font-weight: 500;
}

/* Reason Section */
.reason-section[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.reason-section[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

.reason-input-container[b-9ul8m7e1yk] {
    margin-top: 12px;
}

.reason-textarea[b-9ul8m7e1yk] {
    width: 100%;
    min-height: 80px;
    padding: 12px 16px;
    border: 2px solid rgba(156, 163, 175, 0.2);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
}

.reason-textarea:focus[b-9ul8m7e1yk] {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.reason-textarea[b-9ul8m7e1yk]::placeholder {
    color: #9ca3af;
}

/* Error Message */
.error-message[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin-top: 20px;
    animation: handoverErrorShake-b-9ul8m7e1yk 0.5s ease-in-out;
}

.error-icon[b-9ul8m7e1yk] {
    flex-shrink: 0;
    color: #ef4444;
}

.error-text[b-9ul8m7e1yk] {
    font-size: 14px;
    color: #dc2626;
    font-weight: 500;
    margin: 0;
}

/* Handover Modal Footer */
.handover-modal-footer[b-9ul8m7e1yk] {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 28px 28px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Modern Handover Buttons */
.modern-handover-btn[b-9ul8m7e1yk] {
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 44px;
    cursor: pointer;
    text-decoration: none;
}

.modern-handover-btn[b-9ul8m7e1yk]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.modern-handover-btn:active[b-9ul8m7e1yk]::before {
    width: 300px;
    height: 300px;
}

.btn-cancel[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #64748b;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.btn-cancel:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #475569;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-confirm[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-confirm:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-confirm:active[b-9ul8m7e1yk] {
    transform: translateY(0);
}

.btn-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon[b-9ul8m7e1yk] {
    transition: transform 0.3s ease;
}

.btn-confirm:hover .btn-icon[b-9ul8m7e1yk] {
    transform: translateX(2px);
}

.btn-text[b-9ul8m7e1yk] {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes handoverModalFadeIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes handoverModalSlideIn-b-9ul8m7e1yk {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-60px) rotateX(15deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02) translateY(-15px) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
    }
}

@keyframes handoverGradientShift-b-9ul8m7e1yk {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes handoverIconFloat-b-9ul8m7e1yk {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes handoverShimmerEffect-b-9ul8m7e1yk {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes handoverSectionSlideIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes handoverSpinner-b-9ul8m7e1yk {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes handoverStatusPulse-b-9ul8m7e1yk {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes handoverErrorShake-b-9ul8m7e1yk {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-4px);
    }
    75% {
        transform: translateX(4px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .handover-modal-dialog[b-9ul8m7e1yk] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .handover-modal-header[b-9ul8m7e1yk] {
        padding: 20px 20px 16px;
    }
    
    .handover-header-content[b-9ul8m7e1yk] {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .handover-modal-body[b-9ul8m7e1yk] {
        padding: 20px;
        max-height: 60vh;
    }
    
    .handover-modal-footer[b-9ul8m7e1yk] {
        padding: 16px 20px 20px;
        flex-direction: column;
    }
    
    .modern-handover-btn[b-9ul8m7e1yk] {
        width: 100%;
        min-width: auto;
    }
    
    .agent-item[b-9ul8m7e1yk] {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .agent-info[b-9ul8m7e1yk] {
        text-align: center;
    }
    
    .agent-branch[b-9ul8m7e1yk] {
        justify-content: center;
    }
    
    .agents-list-container[b-9ul8m7e1yk] {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .handover-section[b-9ul8m7e1yk] {
        margin-bottom: 24px;
    }
    
    .queue-section[b-9ul8m7e1yk],
    .agents-section[b-9ul8m7e1yk],
    .reason-section[b-9ul8m7e1yk] {
        padding: 16px;
    }
    
    .agent-item[b-9ul8m7e1yk] {
        padding: 12px;
    }
    
    .avatar-circle[b-9ul8m7e1yk] {
        width: 40px;
        height: 40px;
    }
    
    .search-input[b-9ul8m7e1yk] {
        padding: 10px 10px 10px 36px;
    }
    
    .reason-textarea[b-9ul8m7e1yk] {
        min-height: 60px;
        padding: 10px 12px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .handover-modal-content[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);*/
        box-shadow: 
            0 32px 64px -12px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    
    .handover-modal-header[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);*/
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .handover-modal-title[b-9ul8m7e1yk] {
        color: #1f2937;
    }
    
    .handover-subtitle[b-9ul8m7e1yk] {
        color: #6b7280;
    }
    
    .handover-modal-body[b-9ul8m7e1yk] {
        background: white;
    }
    
    .handover-modal-footer[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);*/
        border-top-color: rgba(255, 255, 255, 0.1);
    }
    
    .section-title[b-9ul8m7e1yk] {
        color: #1f2937;
    }
    
    .agent-name[b-9ul8m7e1yk] {
        color: #1f2937;
    }
    
    .loading-text[b-9ul8m7e1yk] {
        color: #6b7280;
    }
    
    .search-input[b-9ul8m7e1yk] {
        background: white;
        color: #1f2937;
    }
    
    .reason-textarea[b-9ul8m7e1yk] {
        background: white;
        color: #1f2937;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .handover-modal-dialog[b-9ul8m7e1yk],
    .handover-modal-content[b-9ul8m7e1yk],
    .modern-handover-btn[b-9ul8m7e1yk],
    .agent-item[b-9ul8m7e1yk],
    .handover-main-icon[b-9ul8m7e1yk],
    .status-indicator[b-9ul8m7e1yk] {
        animation: none;
        transition: none;
    }
    
    .modern-handover-modal.show .handover-modal-dialog[b-9ul8m7e1yk] {
        transform: scale(1) translateY(0);
    }
    
    .modern-handover-btn:hover[b-9ul8m7e1yk],
    .agent-item:hover[b-9ul8m7e1yk] {
        transform: none;
    }
}

/* Focus States for Accessibility */
.modern-handover-btn:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.modern-handover-close:focus[b-9ul8m7e1yk] {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

.custom-checkbox:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.search-input:focus[b-9ul8m7e1yk] {
    outline: none;
}

.reason-textarea:focus[b-9ul8m7e1yk] {
    outline: none;
}

.agent-item:focus[b-9ul8m7e1yk] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .handover-modal-content[b-9ul8m7e1yk] {
        border: 2px solid #000;
    }
    
    .modern-handover-btn[b-9ul8m7e1yk] {
        border: 2px solid currentColor;
    }
    
    .queue-section[b-9ul8m7e1yk],
    .agents-section[b-9ul8m7e1yk],
    .reason-section[b-9ul8m7e1yk] {
        border: 2px solid currentColor;
    }
    
    .agent-item[b-9ul8m7e1yk] {
        border: 2px solid currentColor;
    }
}

/* Performance Optimizations */
.handover-modal-content[b-9ul8m7e1yk],
.handover-modal-content *[b-9ul8m7e1yk],
.agent-item[b-9ul8m7e1yk],
.modern-handover-btn[b-9ul8m7e1yk],
.modern-header[b-9ul8m7e1yk],
.modern-header *[b-9ul8m7e1yk] {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern Join Chat Modal Styles */
.modern-join-chat-modal .modal-dialog[b-9ul8m7e1yk] {
    max-width: 480px;
    margin: 1.75rem auto;
}

.join-chat-modal-content[b-9ul8m7e1yk] {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    animation: modalSlideIn-b-9ul8m7e1yk 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

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

.join-chat-modal-header[b-9ul8m7e1yk] {
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    position: relative;
}

    .join-chat-modal-header[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
        animation: gradientShift-b-9ul8m7e1yk 3s ease-in-out infinite;
    }

@keyframes gradientShift-b-9ul8m7e1yk {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.join-chat-header-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.join-chat-icon-container[b-9ul8m7e1yk] {
    position: relative;
}

.join-chat-main-icon[b-9ul8m7e1yk] {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px -8px rgba(59, 130, 246, 0.5);
    animation: iconPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

@keyframes iconPulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.join-chat-title-container[b-9ul8m7e1yk] {
    flex: 1;
}

.join-chat-modal-title[b-9ul8m7e1yk] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.join-chat-subtitle[b-9ul8m7e1yk] {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0.25rem 0 0;
    font-weight: 500;
}

.join-chat-modal-body[b-9ul8m7e1yk] {
    padding: 2rem;
    background: #ffffff;
}

.join-chat-content[b-9ul8m7e1yk] {
    text-align: center;
}

.connection-status[b-9ul8m7e1yk] {
    margin-bottom: 2rem;
}

.status-indicator-wrapper[b-9ul8m7e1yk] {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.modern-spinner[b-9ul8m7e1yk] {
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring[b-9ul8m7e1yk] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin-b-9ul8m7e1yk 2s linear infinite;
}

    .spinner-ring:nth-child(1)[b-9ul8m7e1yk] {
        border-top-color: #3b82f6;
        animation-delay: 0s;
    }

    .spinner-ring:nth-child(2)[b-9ul8m7e1yk] {
        border-right-color: #8b5cf6;
        animation-delay: -0.4s;
        width: 80%;
        height: 80%;
        top: 10%;
        left: 10%;
    }

    .spinner-ring:nth-child(3)[b-9ul8m7e1yk] {
        border-bottom-color: #06b6d4;
        animation-delay: -0.8s;
        width: 60%;
        height: 60%;
        top: 20%;
        left: 20%;
    }

@keyframes spin-b-9ul8m7e1yk {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.status-text-container[b-9ul8m7e1yk] {
    margin-bottom: 1rem;
}

.status-title[b-9ul8m7e1yk] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.status-message[b-9ul8m7e1yk] {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
    animation: textPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

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

    50% {
        opacity: 0.7;
    }
}

.progress-container[b-9ul8m7e1yk] {
    margin-top: 2rem;
}

.progress-bar[b-9ul8m7e1yk] {
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-fill[b-9ul8m7e1yk] {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 2px;
    animation: progressFill-b-9ul8m7e1yk 3s ease-in-out infinite;
}

@keyframes progressFill-b-9ul8m7e1yk {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.progress-steps[b-9ul8m7e1yk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.step-indicator[b-9ul8m7e1yk] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e2e8f0;
    transition: all 0.3s ease;
}

.step.active .step-indicator[b-9ul8m7e1yk] {
    background-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
    animation: stepPulse-b-9ul8m7e1yk 1.5s ease-in-out infinite;
}

@keyframes stepPulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.step-label[b-9ul8m7e1yk] {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.step.active .step-label[b-9ul8m7e1yk] {
    color: #3b82f6;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 576px) {
    .modern-join-chat-modal .modal-dialog[b-9ul8m7e1yk] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .join-chat-modal-header[b-9ul8m7e1yk] {
        padding: 1.5rem 1.5rem 1rem;
    }

    .join-chat-modal-body[b-9ul8m7e1yk] {
        padding: 1.5rem;
    }

    .join-chat-header-content[b-9ul8m7e1yk] {
        gap: 0.75rem;
    }

    .join-chat-main-icon[b-9ul8m7e1yk] {
        width: 48px;
        height: 48px;
    }

    .join-chat-modal-title[b-9ul8m7e1yk] {
        font-size: 1.25rem;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .join-chat-modal-content[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);*/
    }

    .join-chat-modal-header[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, #334155 0%, #1e293b 100%);*/
        border-bottom-color: #334155;
    }

    .join-chat-modal-title[b-9ul8m7e1yk] {
        color: #94a3b8;
    }

    .join-chat-subtitle[b-9ul8m7e1yk] {
        color: #94a3b8;
    }

    .join-chat-modal-body[b-9ul8m7e1yk] {
        /*background: #1e293b;*/
    }

    .status-title[b-9ul8m7e1yk] {
        color: #f1f5f9;
    }

    .status-message[b-9ul8m7e1yk] {
        color: #94a3b8;
    }

    .progress-bar[b-9ul8m7e1yk] {
        background-color: #334155;
    }

    .step-indicator[b-9ul8m7e1yk] {
        background-color: #334155;
    }

    .step-label[b-9ul8m7e1yk] {
        color: #94a3b8;
    }
}

/* Modern Confirmation Modal Styles */
.modern-confirmation-modal .modal-dialog[b-9ul8m7e1yk] {
    max-width: 420px;
    margin: 1.75rem auto;
}

.confirmation-modal-content[b-9ul8m7e1yk] {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    animation: confirmationSlideIn-b-9ul8m7e1yk 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes confirmationSlideIn-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

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

.confirmation-modal-header[b-9ul8m7e1yk] {
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
}

    .confirmation-modal-header[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #10b981, #059669, #047857);
        animation: successGradient-b-9ul8m7e1yk 2s ease-in-out infinite;
    }

@keyframes successGradient-b-9ul8m7e1yk {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.confirmation-header-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.confirmation-icon-container[b-9ul8m7e1yk] {
    position: relative;
}

.confirmation-main-icon[b-9ul8m7e1yk] {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: successPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

    .confirmation-main-icon.success[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        box-shadow: 0 8px 25px -8px rgba(16, 185, 129, 0.5);
    }

@keyframes successPulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px -8px rgba(16, 185, 129, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px -8px rgba(16, 185, 129, 0.7);
    }
}

.confirmation-title-container[b-9ul8m7e1yk] {
    flex: 1;
}

.confirmation-modal-title[b-9ul8m7e1yk] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.confirmation-subtitle[b-9ul8m7e1yk] {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0.25rem 0 0;
    font-weight: 500;
}

.modern-confirmation-close[b-9ul8m7e1yk] {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s ease;
}

    .modern-confirmation-close:hover[b-9ul8m7e1yk] {
        background-color: #f1f5f9;
        color: #1e293b;
        transform: scale(1.1);
    }

.confirmation-modal-body[b-9ul8m7e1yk] {
    padding: 2rem;
    background: #ffffff;
}

.confirmation-content[b-9ul8m7e1yk] {
    text-align: center;
}

.success-card[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: cardSlideUp-b-9ul8m7e1yk 0.6s ease-out 0.2s both;
}

@keyframes cardSlideUp-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.success-icon-wrapper[b-9ul8m7e1yk] {
    flex-shrink: 0;
}

.success-checkmark[b-9ul8m7e1yk] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: checkmarkBounce-b-9ul8m7e1yk 0.8s ease-out 0.4s both;
}

@keyframes checkmarkBounce-b-9ul8m7e1yk {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.success-content[b-9ul8m7e1yk] {
    text-align: left;
    flex: 1;
}

.success-title[b-9ul8m7e1yk] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.success-message[b-9ul8m7e1yk] {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.confirmation-modal-footer[b-9ul8m7e1yk] {
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    display: flex;
    justify-content: center;
}

.modern-confirmation-btn[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    border-radius: 12px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.3);
    min-width: 120px;
}

    .modern-confirmation-btn:hover[b-9ul8m7e1yk] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px -4px rgba(59, 130, 246, 0.4);
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    }

    .modern-confirmation-btn:active[b-9ul8m7e1yk] {
        transform: translateY(0);
        box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.3);
    }

.btn-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-text[b-9ul8m7e1yk] {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 576px) {
    .modern-confirmation-modal .modal-dialog[b-9ul8m7e1yk] {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    .confirmation-modal-header[b-9ul8m7e1yk] {
        padding: 1.5rem 1.5rem 1rem;
    }

    .confirmation-modal-body[b-9ul8m7e1yk] {
        padding: 1.5rem;
    }

    .confirmation-modal-footer[b-9ul8m7e1yk] {
        padding: 1rem 1.5rem;
    }

    .success-card[b-9ul8m7e1yk] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .success-content[b-9ul8m7e1yk] {
        text-align: center;
    }
}

/* Modern User Exit Modal Styles */
.modern-user-exit-modal[b-9ul8m7e1yk] {
    --primary-color: #3b82f6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-bg: #ffffff;
    --light-surface: #f8fafc;
    --light-border: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

    .modern-user-exit-modal .modal-backdrop[b-9ul8m7e1yk] {
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        transition: all 0.3s ease;
    }

.user-exit-modal-dialog[b-9ul8m7e1yk] {
    max-width: 480px;
    margin: 1.75rem auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    opacity: 0;
}

.modern-user-exit-modal.show .user-exit-modal-dialog[b-9ul8m7e1yk] {
    transform: scale(1);
    opacity: 1;
}

.user-exit-modal-content[b-9ul8m7e1yk] {
   /* background: var(--light-bg);*/
    border: 1px solid var(--light-border);
    border-radius: 16px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
    position: relative;
    animation: slideInUp-b-9ul8m7e1yk 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Header Styles */
.user-exit-modal-header[b-9ul8m7e1yk] {
    border-bottom: 1px solid var(--light-border);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

    .user-exit-modal-header[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        /*background: linear-gradient(90deg, var(--danger-color) 0%, #f97316 100%);*/
    }

.user-exit-header-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-exit-icon-container[b-9ul8m7e1yk] {
    position: relative;
}

.user-exit-main-icon[b-9ul8m7e1yk] {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--danger-color) 0%, #f97316 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-medium);
    animation: iconPulse-b-9ul8m7e1yk 2s infinite;
    position: relative;
    overflow: hidden;
}

    .user-exit-main-icon[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        animation: shimmer-b-9ul8m7e1yk 3s infinite;
    }

@keyframes iconPulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer-b-9ul8m7e1yk {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.user-exit-title-container[b-9ul8m7e1yk] {
    flex: 1;
}

.user-exit-modal-title[b-9ul8m7e1yk] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.user-exit-subtitle[b-9ul8m7e1yk] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.modern-user-exit-close[b-9ul8m7e1yk] {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    padding: 0;
}

    .modern-user-exit-close:hover[b-9ul8m7e1yk] {
        background: #fee2e2;
        border-color: var(--danger-color);
        color: var(--danger-color);
        transform: scale(1.05);
    }

/* Body Styles */
.user-exit-modal-body[b-9ul8m7e1yk] {
    padding: 32px 24px;
    /*background: var(--light-bg);*/
}

.user-exit-content[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.status-indicator-container[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--light-border);
}

.status-indicator[b-9ul8m7e1yk] {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .status-indicator.disconnected[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, var(--danger-color) 0%, #dc2626 100%);
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    }

.status-pulse[b-9ul8m7e1yk] {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse-b-9ul8m7e1yk 2s infinite;
}

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

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.status-text[b-9ul8m7e1yk] {
    flex: 1;
}

.status-title[b-9ul8m7e1yk] {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 4px 0;
}

.status-description[b-9ul8m7e1yk] {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.info-card[b-9ul8m7e1yk] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

    .info-card[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--warning-color);
    }

.info-icon[b-9ul8m7e1yk] {
    color: var(--warning-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text p[b-9ul8m7e1yk] {
    font-size: 0.875rem;
    color: #92400e;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

/* Footer Styles */
.user-exit-modal-footer[b-9ul8m7e1yk] {
    /*background: var(--light-surface);*/
    border-top: 1px solid var(--light-border);
    padding: 20px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.modern-user-exit-btn[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, var(--danger-color) 0%, #dc2626 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 24px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

    .modern-user-exit-btn[b-9ul8m7e1yk]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .modern-user-exit-btn:hover[b-9ul8m7e1yk] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    }

        .modern-user-exit-btn:hover[b-9ul8m7e1yk]::before {
            left: 100%;
        }

    .modern-user-exit-btn:active[b-9ul8m7e1yk] {
        transform: translateY(0);
        box-shadow: var(--shadow-light);
    }

.btn-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon[b-9ul8m7e1yk] {
    transition: transform 0.2s ease;
}

.modern-user-exit-btn:hover .btn-icon[b-9ul8m7e1yk] {
    transform: scale(1.1);
}

.btn-text[b-9ul8m7e1yk] {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 576px) {
    .user-exit-modal-dialog[b-9ul8m7e1yk] {
        margin: 1rem;
        max-width: none;
    }

    .user-exit-modal-header[b-9ul8m7e1yk] {
        padding: 20px;
    }

    .user-exit-header-content[b-9ul8m7e1yk] {
        gap: 12px;
    }

    .user-exit-main-icon[b-9ul8m7e1yk] {
        width: 48px;
        height: 48px;
    }

    .user-exit-modal-title[b-9ul8m7e1yk] {
        font-size: 1.25rem;
    }

    .user-exit-modal-body[b-9ul8m7e1yk] {
        padding: 24px 20px;
    }

    .status-indicator-container[b-9ul8m7e1yk] {
        padding: 16px;
    }

    .user-exit-modal-footer[b-9ul8m7e1yk] {
        padding: 16px 20px;
    }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
    .modern-user-exit-modal[b-9ul8m7e1yk] {
        --light-bg: #1e293b;
        --light-surface: #334155;
        --light-border: #475569;
        --text-primary: #f1f5f9;
        --text-secondary: gray;
    }
}

/* Modern Suggestions Container */
.suggestions-container[b-9ul8m7e1yk] {
    position: absolute;
    bottom: 80px;
    right: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 320px;
    z-index: 1000;
}

.suggestions-header[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.suggestions-icon[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    color: white;
}

.suggestions-title[b-9ul8m7e1yk] {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    letter-spacing: -0.025em;
}

.suggestions-grid[b-9ul8m7e1yk] {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.suggestion-item[b-9ul8m7e1yk] {
    position: relative;
    overflow: hidden;
}

.suggestion-btn[b-9ul8m7e1yk] {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

    .suggestion-btn:hover[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px -3px rgba(102, 126, 234, 0.4), 0 4px 6px -2px rgba(102, 126, 234, 0.2);
    }

        .suggestion-btn:hover .suggestion-text[b-9ul8m7e1yk] {
            color: white;
        }

        .suggestion-btn:hover .suggestion-icon[b-9ul8m7e1yk] {
            color: white;
            transform: translateX(2px);
        }

    .suggestion-btn:active[b-9ul8m7e1yk] {
        transform: translateY(0);
    }

.suggestion-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.suggestion-icon[b-9ul8m7e1yk] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b7280;
}

.suggestion-text[b-9ul8m7e1yk] {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.025em;
}

.suggestion-ripple[b-9ul8m7e1yk] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.suggestion-btn:active .suggestion-ripple[b-9ul8m7e1yk] {
    width: 200px;
    height: 200px;
}

/* Modern Input Container */
.modern-input-container[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    backdrop-filter: blur(10px);
    /*border-radius: 16px;*/
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Advanced Animations */
@keyframes animate-slide-up-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes animate-fade-in-scale-b-9ul8m7e1yk {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }

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

@keyframes animate-pulse-b-9ul8m7e1yk {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-slide-up[b-9ul8m7e1yk] {
    animation: animate-slide-up-b-9ul8m7e1yk 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-scale[b-9ul8m7e1yk] {
    animation: animate-fade-in-scale-b-9ul8m7e1yk 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .suggestions-container[b-9ul8m7e1yk] {
        right: 10px;
        max-width: 280px;
        padding: 12px;
    }

    .suggestion-btn[b-9ul8m7e1yk] {
        padding: 10px 12px;
    }

    .suggestion-text[b-9ul8m7e1yk] {
        font-size: 12px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .suggestions-container[b-9ul8m7e1yk] {
        /*background: linear-gradient(135deg, rgba(31, 41, 55, 0.95) 0%, rgba(17, 24, 39, 0.95) 100%);*/
        border-color: rgba(75, 85, 99, 0.3);
    }

    .suggestions-title[b-9ul8m7e1yk] {
        /*color: #f3f4f6;*/
    }

    .suggestion-btn[b-9ul8m7e1yk] {
       /* background: linear-gradient(135deg, #374151 0%, #1f2937 100%);*/
        border-color: rgba(75, 85, 99, 0.3);
    }

    .suggestion-text[b-9ul8m7e1yk] {
      /*  color: #e5e7eb;*/
    }

    .suggestion-icon[b-9ul8m7e1yk] {
        color: #9ca3af;
    }

    .suggestion-btn:hover[b-9ul8m7e1yk] {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .suggestions-container[b-9ul8m7e1yk] {
        border: 2px solid #000;
        background: #fff;
    }

    .suggestion-btn[b-9ul8m7e1yk] {
        border: 2px solid #000;
        background: #fff;
    }

        .suggestion-btn:hover[b-9ul8m7e1yk] {
            background: #000;
            color: #fff;
        }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .suggestion-btn[b-9ul8m7e1yk],
    .suggestion-icon[b-9ul8m7e1yk],
    .suggestion-text[b-9ul8m7e1yk],
    .suggestion-ripple[b-9ul8m7e1yk] {
        transition: none;
    }

    .animate-slide-up[b-9ul8m7e1yk],
    .animate-fade-in-scale[b-9ul8m7e1yk],
    .animate-pulse[b-9ul8m7e1yk] {
        animation: none;
    }
}
}


/* ===== USER HANDOVER SUCCESS MODAL ===== */
.modern-handover-success-modal[b-9ul8m7e1yk] {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.35);
}

.handover-success-dialog[b-9ul8m7e1yk] {
    max-width: 440px;
    margin: 1.75rem auto;
}

.handover-success-content[b-9ul8m7e1yk] {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
    background: #ffffff;
    animation: handoverSuccessSlideIn-b-9ul8m7e1yk 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes handoverSuccessSlideIn-b-9ul8m7e1yk {
    from { opacity: 0; transform: translateY(-24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.handover-success-content[b-9ul8m7e1yk]::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #06b6d4);
    background-size: 300% 100%;
    animation: handoverSuccessBar-b-9ul8m7e1yk 3s ease infinite;
}

@keyframes handoverSuccessBar-b-9ul8m7e1yk {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

/* Header */
.handover-success-header[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}

.handover-success-header-content[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.handover-success-icon[b-9ul8m7e1yk] {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
    animation: handoverSuccessIconPulse-b-9ul8m7e1yk 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes handoverSuccessIconPulse-b-9ul8m7e1yk {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}

.handover-success-title-wrap[b-9ul8m7e1yk] { flex: 1; }

.handover-success-title[b-9ul8m7e1yk] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #134e4a;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.handover-success-subtitle[b-9ul8m7e1yk] {
    font-size: 0.8125rem;
    color: #0f766e;
    margin: 0;
    font-weight: 500;
}

.handover-success-close[b-9ul8m7e1yk] {
    background: rgba(13, 148, 136, 0.08);
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.handover-success-close:hover[b-9ul8m7e1yk] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

/* Body */
.handover-success-body[b-9ul8m7e1yk] {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
}

.handover-success-status-row[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 12px;
}

.handover-success-pulse-wrap[b-9ul8m7e1yk] {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.12);
    flex-shrink: 0;
}

.handover-success-pulse[b-9ul8m7e1yk] {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: handoverSuccessPulse-b-9ul8m7e1yk 2s ease-in-out infinite;
}

@keyframes handoverSuccessPulse-b-9ul8m7e1yk {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.7; transform: scale(1.15); }
}

.handover-success-status-title[b-9ul8m7e1yk] {
    font-size: 1rem;
    font-weight: 600;
    color: #134e4a;
    margin: 0 0 4px 0;
}

.handover-success-status-desc[b-9ul8m7e1yk] {
    font-size: 0.8125rem;
    color: #0f766e;
    margin: 0;
    line-height: 1.5;
}

.handover-success-info-card[b-9ul8m7e1yk] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #f0fdfa;
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-left: 4px solid #0d9488;
    border-radius: 10px;
}

.handover-success-info-card p[b-9ul8m7e1yk] {
    font-size: 0.8125rem;
    color: #0f766e;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Footer */
.handover-success-footer[b-9ul8m7e1yk] {
    border-top: 1px solid rgba(13, 148, 136, 0.12);
    padding: 16px 24px 20px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    display: flex;
    justify-content: flex-end;
}

.handover-success-btn[b-9ul8m7e1yk] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0d9488 0%, #0891b2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.handover-success-btn:hover[b-9ul8m7e1yk] {
    background: linear-gradient(135deg, #0f766e 0%, #0369a1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.45);
    color: white;
}

.handover-success-btn:active[b-9ul8m7e1yk] {
    transform: translateY(0);
}

@media (max-width: 576px) {
    .handover-success-dialog[b-9ul8m7e1yk] { margin: 1rem; max-width: calc(100% - 2rem); }
    .handover-success-header[b-9ul8m7e1yk] { padding: 18px 18px 14px; }
    .handover-success-body[b-9ul8m7e1yk]   { padding: 18px; }
    .handover-success-footer[b-9ul8m7e1yk] { padding: 14px 18px 18px; }
}

/* ===== HANDOVER BUTTON LOADING STATE ===== */
.handover-btn-spinner[b-9ul8m7e1yk] {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: handoverBtnSpin-b-9ul8m7e1yk 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes handoverBtnSpin-b-9ul8m7e1yk {
    to { transform: rotate(360deg); }
}

.btn-confirm-loading[b-9ul8m7e1yk] {
    opacity: 0.85;
    cursor: not-allowed !important;
    pointer-events: none;
}

.modern-handover-btn:disabled[b-9ul8m7e1yk] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}
/* /Pages/ForgotPassword.razor.rz.scp.css */
/* Forgot Password Modern Styles */

.forgot-password-container[b-nl98mmow8q] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.forgot-password-container[b-nl98mmow8q]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float-b-nl98mmow8q 20s ease-in-out infinite;
}

@keyframes float-b-nl98mmow8q {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.forgot-password-card[b-nl98mmow8q] {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideUp-b-nl98mmow8q 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

@keyframes slideUp-b-nl98mmow8q {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-header[b-nl98mmow8q] {
    padding: 32px 32px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.back-button[b-nl98mmow8q] {
    color: #6b7280;
    transition: all 0.2s ease;
    border-radius: 12px;
}

.back-button:hover[b-nl98mmow8q] {
    background-color: rgba(107, 114, 128, 0.1);
    transform: translateX(-2px);
}

.header-title[b-nl98mmow8q] {
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    flex: 1;
}

.header-icon[b-nl98mmow8q] {
    color: #667eea;
    font-size: 28px;
}

.header-divider[b-nl98mmow8q] {
    margin: 0 32px 24px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.card-content[b-nl98mmow8q] {
    padding: 0 32px 24px;
}

.form-section[b-nl98mmow8q] {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.fade-in[b-nl98mmow8q] {
    animation-name: fadeIn-b-nl98mmow8q;
}

.fade-out[b-nl98mmow8q] {
    animation-name: fadeOut-b-nl98mmow8q;
}

@keyframes fadeIn-b-nl98mmow8q {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut-b-nl98mmow8q {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.form-description[b-nl98mmow8q] {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.reset-form[b-nl98mmow8q] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-input[b-nl98mmow8q], .password-input[b-nl98mmow8q] {
    transition: all 0.2s ease;
}

.email-input:focus-within[b-nl98mmow8q], .password-input:focus-within[b-nl98mmow8q] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.password-requirements[b-nl98mmow8q] {
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    margin: 16px 0;
}

.requirements-title[b-nl98mmow8q] {
    color: #374151;
    font-weight: 600;
    margin-bottom: 12px;
}

.requirements-list[b-nl98mmow8q] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.requirement-item[b-nl98mmow8q] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.requirement-item.valid[b-nl98mmow8q] {
    color: #059669;
    animation: checkmark-b-nl98mmow8q 0.3s ease;
}

.requirement-item.valid .mud-icon[b-nl98mmow8q] {
    color: #059669;
}

@keyframes checkmark-b-nl98mmow8q {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.password-strength[b-nl98mmow8q] {
    margin: 16px 0;
}

.strength-label[b-nl98mmow8q] {
    color: #6b7280;
    margin-bottom: 8px;
    display: block;
}

.strength-bar[b-nl98mmow8q] {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill[b-nl98mmow8q] {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-fill.weak[b-nl98mmow8q] {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.strength-fill.fair[b-nl98mmow8q] {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.strength-fill.good[b-nl98mmow8q] {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.strength-fill.strong[b-nl98mmow8q] {
    background: linear-gradient(90deg, #059669, #10b981);
}

.strength-text[b-nl98mmow8q] {
    font-weight: 600;
}

.strength-text.weak[b-nl98mmow8q] { color: #ef4444; }
.strength-text.fair[b-nl98mmow8q] { color: #f59e0b; }
.strength-text.good[b-nl98mmow8q] { color: #3b82f6; }
.strength-text.strong[b-nl98mmow8q] { color: #059669; }

.submit-button[b-nl98mmow8q] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.2s ease;
    margin-top: 8px;
}

.submit-button:hover:not(:disabled)[b-nl98mmow8q] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-button:active[b-nl98mmow8q] {
    transform: translateY(0);
}

.submit-button:disabled[b-nl98mmow8q] {
    opacity: 0.6;
    cursor: not-allowed;
}

.error-alert[b-nl98mmow8q] {
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.05);
    animation: shake-b-nl98mmow8q 0.5s ease-in-out;
}

@keyframes shake-b-nl98mmow8q {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-section[b-nl98mmow8q] {
    text-align: center;
    padding: 40px 20px;
}

.error-icon[b-nl98mmow8q] {
    font-size: 64px;
    color: #ef4444;
    margin-bottom: 16px;
    animation: pulse-b-nl98mmow8q 2s infinite;
}

@keyframes pulse-b-nl98mmow8q {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.error-title[b-nl98mmow8q] {
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
}

.error-description[b-nl98mmow8q] {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.retry-button[b-nl98mmow8q] {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.2s ease;
}

.retry-button:hover[b-nl98mmow8q] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.card-footer[b-nl98mmow8q] {
    padding: 16px 32px 32px;
    text-align: center;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    margin-top: 24px;
}

.footer-text[b-nl98mmow8q] {
    color: #6b7280;
}

.login-link[b-nl98mmow8q] {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.login-link:hover[b-nl98mmow8q] {
    color: #4f46e5;
    text-decoration: underline;
}

/* Dark mode support */
.dark-mode .forgot-password-card[b-nl98mmow8q] {
    background: rgba(45, 45, 45, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .header-title[b-nl98mmow8q],
.dark-mode .error-title[b-nl98mmow8q] {
    color: #f9fafb;
}

.dark-mode .form-description[b-nl98mmow8q],
.dark-mode .footer-text[b-nl98mmow8q],
.dark-mode .error-description[b-nl98mmow8q] {
    color: #d1d5db;
}

.dark-mode .password-requirements[b-nl98mmow8q] {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.dark-mode .requirements-title[b-nl98mmow8q] {
    color: #f3f4f6;
}

.dark-mode .strength-bar[b-nl98mmow8q] {
    background: #374151;
}

.dark-mode .header-divider[b-nl98mmow8q] {
    background: linear-gradient(90deg, transparent, #374151, transparent);
}

/* Responsive design */
@media (max-width: 640px) {
    .forgot-password-container[b-nl98mmow8q] {
        padding: 16px;
    }
    
    .forgot-password-card[b-nl98mmow8q] {
        max-width: 100%;
        border-radius: 20px;
    }
    
    .card-header[b-nl98mmow8q],
    .card-content[b-nl98mmow8q],
    .card-footer[b-nl98mmow8q] {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .header-divider[b-nl98mmow8q] {
        margin-left: 24px;
        margin-right: 24px;
    }
    
    .requirements-list[b-nl98mmow8q] {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card-header[b-nl98mmow8q],
    .card-content[b-nl98mmow8q],
    .card-footer[b-nl98mmow8q] {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-divider[b-nl98mmow8q] {
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Loading states */
.submit-button .mud-progress-circular[b-nl98mmow8q] {
    margin-right: 8px;
}

/* Focus states */
.back-button:focus[b-nl98mmow8q],
.submit-button:focus[b-nl98mmow8q],
.retry-button:focus[b-nl98mmow8q] {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *[b-nl98mmow8q] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* /Pages/Help.razor.rz.scp.css */
/* Modern Help Page Styles */

/* Animations */
@keyframes fadeIn-b-mr2cikalca {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-mr2cikalca {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft-b-mr2cikalca {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight-b-mr2cikalca {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float-b-mr2cikalca {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate-b-mr2cikalca {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation Classes */
.animate-fade-in[b-mr2cikalca] {
    animation: fadeIn-b-mr2cikalca 0.8s ease-out;
}

.animate-slide-up[b-mr2cikalca] {
    animation: slideUp-b-mr2cikalca 0.8s ease-out;
    animation-fill-mode: both;
}

.animate-slide-left[b-mr2cikalca] {
    animation: slideLeft-b-mr2cikalca 0.8s ease-out;
}

.animate-slide-right[b-mr2cikalca] {
    animation: slideRight-b-mr2cikalca 0.8s ease-out;
}

/* Container */
.help-container[b-mr2cikalca] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Hero Section */
.hero-section[b-mr2cikalca] {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background[b-mr2cikalca] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-shapes[b-mr2cikalca] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape[b-mr2cikalca] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-b-mr2cikalca 6s ease-in-out infinite;
}

.shape-1[b-mr2cikalca] {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2[b-mr2cikalca] {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3[b-mr2cikalca] {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

.hero-content[b-mr2cikalca] {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-text[b-mr2cikalca] {
    text-align: center;
}

.hero-title-container[b-mr2cikalca] {
    margin-bottom: 40px;
}

.mud-typography:focus[b-mr2cikalca] {
    outline: none !important;
    box-shadow: none !important;
}

.hero-title[b-mr2cikalca] {
    font-size: 4rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 0 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle[b-mr2cikalca] {
    font-size: 3rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: -10px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description[b-mr2cikalca] {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 20px 0 !important;
}

.hero-actions[b-mr2cikalca] {
    margin-top: 30px;
}

.contact-btn[b-mr2cikalca] {
    padding: 12px 32px !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.contact-btn:hover[b-mr2cikalca] {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

.hero-image[b-mr2cikalca] {
    text-align: center;
}

.hero-illustration[b-mr2cikalca] {
    position: relative;
    display: inline-block;
}

.hero-illustration img[b-mr2cikalca] {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float-b-mr2cikalca 4s ease-in-out infinite;
}

/* Section Divider */
.section-divider[b-mr2cikalca] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: transparent;
}

.divider-line[b-mr2cikalca] {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #cbd5e0, transparent);
    max-width: 200px;
}

.divider-icon[b-mr2cikalca] {
    margin: 0 20px;
    padding: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Features Section */
.features-section[b-mr2cikalca] {
    padding: 60px 0;
}

.feature-card[b-mr2cikalca] {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card[b-mr2cikalca]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.feature-card:hover[b-mr2cikalca]::before {
    left: 100%;
}

.feature-card:hover[b-mr2cikalca] {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-image-container[b-mr2cikalca] {
    position: relative;
}

.image-wrapper[b-mr2cikalca] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-image[b-mr2cikalca] {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay[b-mr2cikalca] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.image-wrapper:hover .feature-image[b-mr2cikalca] {
    transform: scale(1.05);
}

.image-wrapper:hover .image-overlay[b-mr2cikalca] {
    opacity: 1;
}

.feature-content[b-mr2cikalca] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title[b-mr2cikalca] {
    color: #2d3748 !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

.feature-description[b-mr2cikalca] {
    color: #4a5568 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
}

.feature-list[b-mr2cikalca] {
    margin-bottom: 24px;
}

.feature-item[b-mr2cikalca] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #4a5568;
}

.feature-item .mud-icon[b-mr2cikalca] {
    color: #48bb78 !important;
    margin-right: 12px;
}

/* FAQ Section */
.faq-section[b-mr2cikalca] {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 80px 0;
}

.faq-header[b-mr2cikalca] {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title[b-mr2cikalca] {
    color: #2d3748 !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
}

.faq-subtitle[b-mr2cikalca] {
    color: #4a5568 !important;
    font-size: 1.1rem !important;
}

.modern-expansion-panels[b-mr2cikalca] {
    background: transparent !important;
}

.faq-panel[b-mr2cikalca] {
    background: white !important;
    border-radius: 12px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.faq-panel:hover[b-mr2cikalca] {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
}

.faq-question[b-mr2cikalca] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.faq-icon[b-mr2cikalca] {
    color: #667eea !important;
}

.faq-answer[b-mr2cikalca] {
    color: #4a5568;
    line-height: 1.6;
    padding: 16px 0;
}

.faq-link[b-mr2cikalca] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link:hover[b-mr2cikalca] {
    color: #764ba2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-mr2cikalca] {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle[b-mr2cikalca] {
        font-size: 2rem !important;
    }
    
    .hero-description[b-mr2cikalca] {
        font-size: 1rem !important;
    }
    
    .feature-card[b-mr2cikalca] {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .hero-text[b-mr2cikalca] {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .feature-card-reverse .feature-content[b-mr2cikalca] {
        order: 2;
    }
    
    .feature-card-reverse .feature-image-container[b-mr2cikalca] {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero-title[b-mr2cikalca] {
        font-size: 2rem !important;
    }
    
    .hero-subtitle[b-mr2cikalca] {
        font-size: 1.5rem !important;
    }
    
    .feature-card[b-mr2cikalca] {
        padding: 16px;
    }
    
    .faq-section[b-mr2cikalca] {
        padding: 40px 0;
    }
}

/* WhatsApp Statistics Cards */
.stats-info-card[b-mr2cikalca] {
    background: white;
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.stats-info-card:hover[b-mr2cikalca] {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.stats-header[b-mr2cikalca] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.stats-title[b-mr2cikalca] {
    color: #2d3748;
    font-weight: 600;
    margin: 0;
}

.stats-content[b-mr2cikalca] {
    color: #4a5568;
    line-height: 1.7;
}

.stats-content p[b-mr2cikalca] {
    margin-bottom: 12px;
}

.stats-content strong[b-mr2cikalca] {
    color: #2d3748;
    font-weight: 600;
}

.stats-list[b-mr2cikalca] {
    margin: 12px 0;
    padding-left: 20px;
    list-style: none;
}

.stats-list li[b-mr2cikalca] {
    margin-bottom: 8px;
    position: relative;
    padding-left: 8px;
}

.stats-list li[b-mr2cikalca]::before {
    content: "▸";
    position: absolute;
    left: -12px;
    color: #667eea;
    font-weight: bold;
}

.stats-list code[b-mr2cikalca] {
    background: #f7fafc;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
    color: #667eea;
    font-family: 'Courier New', monospace;
}

.stats-note[b-mr2cikalca] {
    font-size: 0.9em;
    color: #718096;
    font-style: italic;
    margin-top: 12px;
}

/* Quick Tips Card */
.stats-tips-card[b-mr2cikalca] {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #667eea;
}

.stats-tips-header[b-mr2cikalca] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.stats-tips-header .stats-title[b-mr2cikalca] {
    color: #2d3748;
    font-size: 1.25rem;
}

.stats-tips-content[b-mr2cikalca] {
    margin-top: 16px;
}

.tip-item[b-mr2cikalca] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.tip-item:hover[b-mr2cikalca] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.tip-item span[b-mr2cikalca] {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tip-item strong[b-mr2cikalca] {
    color: #2d3748;
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .stats-info-card[b-mr2cikalca] {
        padding: 20px;
    }

    .stats-tips-card[b-mr2cikalca] {
        padding: 24px;
    }

    .tip-item[b-mr2cikalca] {
        padding: 12px;
    }
}
/* /Pages/History.razor.rz.scp.css */
/* History Page Modern Styles */

.history-container[b-iwedzuq84v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  /*  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
    animation: fadeIn-b-iwedzuq84v 0.6s ease-out;
}

@keyframes fadeIn-b-iwedzuq84v {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-section[b-iwedzuq84v] {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 20px;
    animation: slideInFromLeft-b-iwedzuq84v 0.8s ease-out;
}

@keyframes slideInFromLeft-b-iwedzuq84v {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.breadcrumb-modern[b-iwedzuq84v] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.title-section[b-iwedzuq84v] {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 30px;
    animation: slideInFromRight-b-iwedzuq84v 0.8s ease-out;
}

@keyframes slideInFromRight-b-iwedzuq84v {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.content-wrapper[b-iwedzuq84v] {
    width: 78vw;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.filter-section[b-iwedzuq84v] {
    animation: scaleIn-b-iwedzuq84v 0.6s ease-out 0.2s both;
}

@keyframes scaleIn-b-iwedzuq84v {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.filter-paper[b-iwedzuq84v] {
    border-radius: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-paper:hover[b-iwedzuq84v] {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.filter-container[b-iwedzuq84v] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.filter-row[b-iwedzuq84v] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    align-items: end;
}

.date-row[b-iwedzuq84v] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
}

.search-row[b-iwedzuq84v] {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.filter-item[b-iwedzuq84v] {
    min-width: 140px;
    transition: all 0.3s ease;
}

.filter-item:hover[b-iwedzuq84v] {
    transform: translateY(-1px);
}

.date-item[b-iwedzuq84v] {
    min-width: 180px;
    flex: 1;
}

.date-item-wide[b-iwedzuq84v] {
    min-width: 280px;
    flex: 1;
}

.search-button[b-iwedzuq84v] {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: none;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-button:hover[b-iwedzuq84v] {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(25, 118, 210, 0.4);
}

.table-section[b-iwedzuq84v] {
    animation: slideInFromBottom-b-iwedzuq84v 0.8s ease-out 0.4s both;
}

@keyframes slideInFromBottom-b-iwedzuq84v {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-container[b-iwedzuq84v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.loading-text[b-iwedzuq84v] {
    color: #666;
    font-weight: 500;
}

.table-paper[b-iwedzuq84v] {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.table-paper:hover[b-iwedzuq84v] {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.modern-table[b-iwedzuq84v] {
    background: transparent;
}

.table-header[b-iwedzuq84v] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-title[b-iwedzuq84v] {
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.count-chip[b-iwedzuq84v] {
    animation: pulse-b-iwedzuq84v 2s infinite;
}

@keyframes pulse-b-iwedzuq84v {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.search-field[b-iwedzuq84v] {
    min-width: 250px;
    transition: all 0.3s ease;
}

.search-field:focus-within[b-iwedzuq84v] {
    transform: scale(1.02);
}

.table-header-cell[b-iwedzuq84v] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-weight: 600;
    text-align: center;
    padding: 16px 12px;
    border-bottom: 2px solid #dee2e6;
}

.table-cell[b-iwedzuq84v] {
    text-align: center;
    padding: 16px 12px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.table-cell:hover[b-iwedzuq84v] {
    background: rgba(25, 118, 210, 0.04);
}

.cell-text[b-iwedzuq84v] {
    font-weight: 500;
    color: #495057;
}

.date-text[b-iwedzuq84v] {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.875rem;
}

.product-chip[b-iwedzuq84v] {
    font-weight: 600;
    border-radius: 8px;
    animation: chipGlow-b-iwedzuq84v 3s ease-in-out infinite;
}

@keyframes chipGlow-b-iwedzuq84v {
    0%, 100% {
        box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(33, 150, 243, 0.6);
    }
}

.status-chip[b-iwedzuq84v], .priority-chip[b-iwedzuq84v] {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.status-chip:hover[b-iwedzuq84v], .priority-chip:hover[b-iwedzuq84v] {
    transform: scale(1.05);
}

.action-cell[b-iwedzuq84v] {
    padding: 12px;
}

.action-buttons[b-iwedzuq84v] {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.action-btn[b-iwedzuq84v] {
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-btn:hover[b-iwedzuq84v] {
    transform: translateY(-2px) scale(1.1);
}

.view-btn:hover[b-iwedzuq84v] {
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.4);
}

.agent-btn:hover[b-iwedzuq84v] {
    box-shadow: 0 4px 16px rgba(156, 39, 176, 0.4);
}

.access-denied[b-iwedzuq84v] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    animation: fadeIn-b-iwedzuq84v 0.6s ease-out;
}

.access-alert[b-iwedzuq84v] {
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  
    
    
}

@media (max-width: 1200px) {
    .filter-row[b-iwedzuq84v] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .filter-item[b-iwedzuq84v] {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .history-container[b-iwedzuq84v] {
        padding: 16px;
    }
    
    .filter-row[b-iwedzuq84v] {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .date-row[b-iwedzuq84v] {
        flex-direction: column;
    }
    
    .filter-item[b-iwedzuq84v], .date-item[b-iwedzuq84v], .date-item-wide[b-iwedzuq84v] {
        min-width: auto;
        width: 100%;
    }
    
    .search-field[b-iwedzuq84v] {
        min-width: auto;
        width: 100%;
    }
    
    .action-buttons[b-iwedzuq84v] {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .content-wrapper[b-iwedzuq84v] {
        width: 95vw !important;
    }
    
    .filter-section[b-iwedzuq84v] {
        width: 95vw !important;
    }
    
    .modern-table[b-iwedzuq84v] {
        width: 95vw !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .history-container[b-iwedzuq84v] {
        /*background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);*/
    }
    
    .filter-paper[b-iwedzuq84v], .table-paper[b-iwedzuq84v] {
        background: rgba(30, 30, 30, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .breadcrumb-modern[b-iwedzuq84v] {
        background: rgba(30, 30, 30, 0.9);
    }
    
    .table-header-cell[b-iwedzuq84v] {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    }
    
    .cell-text[b-iwedzuq84v] {
        color: #e2e8f0;
    }
}

/* Mobile History Animations */
@keyframes fadeIn-b-iwedzuq84v {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInDown-b-iwedzuq84v {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

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

@keyframes slideInLeft-b-iwedzuq84v {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

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

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

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

@keyframes fadeInLeft-b-iwedzuq84v {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

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

@keyframes rotateIn-b-iwedzuq84v {
    from {
        transform: rotate(-180deg);
        opacity: 0;
    }

    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes bounceIn-b-iwedzuq84v {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shake-b-iwedzuq84v {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes pulse-b-iwedzuq84v {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Specific Styles */
.mobile-history-card:hover[b-iwedzuq84v] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

.mobile-filter-section[b-iwedzuq84v] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mobile-history-container[b-iwedzuq84v] {
    padding: 0 4px;
}

@media (max-width: 768px) {
    .mobile-history-card[b-iwedzuq84v] {
        margin-bottom: 8px;
        padding: 8px !important;
    }
    
    .mobile-search-bar[b-iwedzuq84v] {
        margin: 6px !important;
        padding: 6px !important;
    }
    
    .mobile-stats[b-iwedzuq84v] {
        margin: 6px !important;
        padding: 8px !important;
    }
}

@media (max-width: 480px) {
    .mobile-history-card[b-iwedzuq84v] {
        margin-bottom: 6px;
        padding: 6px !important;
    }
    
    .mobile-history-card .mud-text[b-iwedzuq84v] {
        font-size: 0.8rem !important;
    }
    
    .mobile-history-card .mud-chip[b-iwedzuq84v] {
        font-size: 0.6rem !important;
        height: 18px !important;
    }
    
    .mobile-search-bar[b-iwedzuq84v] {
        margin: 4px !important;
        padding: 4px !important;
    }
    
    .mobile-stats[b-iwedzuq84v] {
        margin: 4px !important;
        padding: 6px !important;
    }
}

@media (max-width: 360px) {
    .mobile-history-card[b-iwedzuq84v] {
        padding: 4px !important;
    }
    
    .mobile-history-card .mud-text[b-iwedzuq84v] {
        font-size: 0.75rem !important;
    }
    
    .mobile-history-card .mud-chip[b-iwedzuq84v] {
        font-size: 0.55rem !important;
        height: 16px !important;
    }
    
    .mobile-search-bar[b-iwedzuq84v] {
        margin: 2px !important;
        padding: 2px !important;
    }
    
    .mobile-stats[b-iwedzuq84v] {
        margin: 2px !important;
        padding: 4px !important;
    }
    
    .mobile-stats .mud-text[b-iwedzuq84v] {
        font-size: 0.8rem !important;
    }
}
/* /Pages/HistoryDetail.razor.rz.scp.css */
.columnRight[b-483x6vjveh] {
    float: left;
    width: 55%;
    height: 75vh;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.columnRightHeader[b-483x6vjveh] {
    overflow: hidden;
    height: 70px;
    width: 76vw;
    padding-top: 1px;
    background-color: #ffffff;
    margin-top: 10px
}

.columnRightComponent[b-483x6vjveh] {
    position: relative;
    height: 100%;
    width: 105%;
    margin-left: -15px;
}

.columnRightParentContainer[b-483x6vjveh] {
    display: flex;
    height: 73%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: containerFadeIn-b-483x6vjveh 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.columnRightParentContainer[b-483x6vjveh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.columnRightParentContainer > *[b-483x6vjveh] {
    position: relative;
    z-index: 2;
}

.columnRightParentContainer:hover[b-483x6vjveh] {
    transform: translateY(-1px);
}

@keyframes containerFadeIn-b-483x6vjveh {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(10px) scale(0.98);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

[b-483x6vjveh]::-webkit-scrollbar {
    display: none;
}

.columnRightContainer[b-483x6vjveh] {
    background: transparent;
    width: 56vw;
    margin-top: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 57vh;
    margin-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(156, 163, 175, 0.5) transparent;
}

.columnRightContainer[b-483x6vjveh]::-webkit-scrollbar {
    width: 6px;
}

.columnRightContainer[b-483x6vjveh]::-webkit-scrollbar-track {
    background: transparent;
}

.columnRightContainer[b-483x6vjveh]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.5), rgba(107, 114, 128, 0.5));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.columnRightContainer[b-483x6vjveh]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.8), rgba(107, 114, 128, 0.8));
}

.columnRightFooter[b-483x6vjveh] {
    position: absolute;
    overflow: hidden;
    height: 70px;
    width: 110%;
    background-color: #e6e6e6;
    bottom: 0;
    box-shadow: 0 1px 1px 0 #0d6efd, 0 1px 10px 0 #0d6efd;
}

.columnRightFooterMessageContainer[b-483x6vjveh] {
    display: flex;
    padding-top: 20px;
    padding-left: 10px;
    width: 88%;
    margin-left: 10px;
    margin-right: 10px;
}

.columnRightFooterMessageContainerSender[b-483x6vjveh] {
    background-color: white;
    margin-top: -4px;
    margin-left: 10px;
    width: 85%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 5px;
    height: 40px
}

.columnRightFooterMessageContainerButton[b-483x6vjveh] {
    background-color: transparent;
    margin-top: -8px;
    margin-left: 0px;
}

.contact:hover[b-483x6vjveh] {
    background-color: #b3b3b3;
}

.sendMessage[b-483x6vjveh] {
    background-color: transparent;
    cursor: pointer;
    border: 0px;
}

    .sendMessage:hover[b-483x6vjveh] {
        transition: transform .2s;
        /* Animation */
    }

.incoming_msg[b-483x6vjveh] {
    padding-left: 20px;
    animation: messageSlideInLeft-b-483x6vjveh 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.incoming_msg:hover[b-483x6vjveh] {
    transform: translateX(4px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.incoming_msg_img[b-483x6vjveh] {
    display: inline-block;
    width: 55px;
    height: 55px;
}

    .incoming_msg_img img[b-483x6vjveh] {
        width: 50px;
        height: 50px;
    }

.received_msg[b-483x6vjveh] {
    display: inline-block;
    padding: 0px 10px 0 -10px;
    vertical-align: top;
    width: 92%;
}

.received_withd_msg p[b-483x6vjveh] {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 0 18px 18px 18px;
    color: #475569;
    font-size: 12px;
    margin: 0;
    padding: 8px 14px 8px 16px;
    width: 100%;
    word-wrap: break-word;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.received_withd_msg p[b-483x6vjveh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.received_withd_msg p:hover[b-483x6vjveh] {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.time_date[b-483x6vjveh] {
    color: #94a3b8;
    display: block;
    font-size: 11px;
    margin: 8px 0 0;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.time_date:hover[b-483x6vjveh] {
    opacity: 1;
    color: #64748b;
    transform: translateY(-1px);
}

.received_withd_msg[b-483x6vjveh] {
    width: 57%;
}

.sent_msg p[b-483x6vjveh] {
    border-radius: 18px 0px 18px 18px;
    font-size: 12px;
    margin: 0;
    color: dimgray;
    padding: 8px 14px;
    width: 100%;
    margin-left: 10px;
    height: fit-content;
    word-break: break-word;
    white-space: normal;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sent_msg p[b-483x6vjveh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.sent_msg p:hover[b-483x6vjveh] {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 10px -1px rgba(59, 130, 246, 0.4),
        0 4px 6px -1px rgba(59, 130, 246, 0.3);
}

.sent_msg a[b-483x6vjveh] {
    border-radius: 15px 0px 15px 15px;
    font-size: 14px;
    margin: 0;
    padding: 5px;
    color: #fff;
    width: 100%;
    margin-left: 10px;
    height: fit-content;
    word-break: break-all;
    white-space: normal;
}

.outgoing_msg[b-483x6vjveh] {
    overflow: hidden;
    margin: 26px -35px 26px;
    padding-right: 60px;
    margin-left: 10px;
    animation: messageSlideInRight-b-483x6vjveh 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right center;
}

.outgoing_msg:hover[b-483x6vjveh] {
    transform: translateX(-4px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sent_msg[b-483x6vjveh] {
    position: relative;
    float: right;
    width: 47%;
    height: fit-content;
    word-break: break-all;
    white-space: normal;
}

.messaging[b-483x6vjveh] {
    padding: 0 0 50px 0;
}

.msg_history[b-483x6vjveh] {
    overflow-y: auto;
    position: relative
}

@media (max-width: 641px) {
    .profileImage[b-483x6vjveh] {
        visibility: hidden;
    }
}

@media (min-width: 642px) {
    .profileImage[b-483x6vjveh] {
        visibility: visible;
    }
}

.profileImage[b-483x6vjveh] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 29px;
    color: #d9d9d9;
    text-align: center;
    line-height: 39px;
    margin-top: 15px;
    margin-left: -2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
    background-color: #0d6efd;
}

.searchButton[b-483x6vjveh] {
    margin-right: 20px;
    margin-left: -2px
}

.threadList[b-483x6vjveh] {
    width: 100%;
    margin-bottom: 4px;
    margin-left: 3px;
    height: 54vh;
    overflow-y: auto;
    margin-right: 21px;
    /*background-color: #bfbfbf;*/
    overflow-x: hidden;
}

.threadContact[b-483x6vjveh] {
    margin-bottom: 10px;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 5px;
    height: 70px;
}

.threadContactColor[b-483x6vjveh] {
    background-color: #ffd4cc !important;
    margin-bottom: 10px;
    cursor: pointer;
    margin-right: 5px;
    margin-left: 5px;
    height: 70px;
}

.threadContactdiv[b-483x6vjveh] {
    margin-left: -40px;
    margin-top: 5px;
    padding-right: 20px;
    overflow: hidden;
}

.threadContactdivCenter[b-483x6vjveh] {
    flex-direction: column;
    overflow: hidden;
    padding-left: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.threadContactJoinChat[b-483x6vjveh] {
    margin-top: -13px;
    align-self: center;
    font-size: 10px;
    overflow: hidden;
}

.liveAgentChat[b-483x6vjveh] {
    color: #0d6efd;
    font-size: 10px;
    margin-top: -1px;
}

.crmName[b-483x6vjveh] {
    margin-top: -16px;
    align-self: center;
    font-size: 10px;
}

.profileImageMessage[b-483x6vjveh] {
    background-color: #0d6efd;
    margin-left: 20px;
    margin-top: 10px
}

.emptyMessage[b-483x6vjveh] {
    margin-top: 20px;
    overflow: hidden;
    margin-left: -20px
}

    .emptyMessage img[b-483x6vjveh] {
        height: 10%;
        width: 50%
    }

.emojiItem[b-483x6vjveh] {
    margin-left: 5px;
    cursor: pointer;
    width: 70px;
    font-size: 30px
}

.sidePanel[b-483x6vjveh] {
    display: none;
    width: 35%;
    background-color: white;
    height: 110%;
    border-left: 1px solid black;
    background-color: lightgray;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

.notesStyles[b-483x6vjveh] {
    max-height: 60%;
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: 15px;
}

.noteslist[b-483x6vjveh] {
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 10px;
    margin-top: 10px
}

.notesInput[b-483x6vjveh] {
    position: absolute;
    bottom: 80px;
    width: 60%;
    margin-left: 15px
}

.notesTextArea[b-483x6vjveh] {
    width: 35%;
    margin-bottom: 10px;
    resize: none
}

.notesTextAreaButton[b-483x6vjveh] {
    width: 35%;
}

.showNotesShadows[b-483x6vjveh] {
    margin-top: 12px;
    margin-right: 15px;
    border-radius: 50%;
    width: 70%;
    margin-left: 5px;
}

.imgusericon[b-483x6vjveh] {
    margin-left: -10px;
    margin-top: 0px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    padding-left: 3.4px;
    padding-top: 3.1px
}

.newmessageicon[b-483x6vjveh] {
    position: absolute;
    bottom: 0px;
    margin-left: 20px;
    margin-bottom: 80px;
    cursor: default;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

    .newmessageicon button[b-483x6vjveh] {
        background-color: lightgray
    }

        .newmessageicon button i[b-483x6vjveh] {
            background-color: transparent
        }

    .newmessageicon:hover[b-483x6vjveh] {
        transform: scale(1.1);
    }



.inlineText[b-483x6vjveh] {
    display: flex;
    font-family: monospace;
    background-color: transparent;
    font-size: 20px;
    left: 20%;
    text-align: center;
    padding-left: 30%;
    line-height: 35px;
    letter-spacing: 3px;
}

.notesnotification[b-483x6vjveh] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    position: absolute;
    margin-top: 12px;
    z-index: 10;
    overflow: hidden;
    right: 40px
}

.searchboxstyles[b-483x6vjveh] {
    background-color: white;
    width: 90%;
    margin-left: 12px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.10);
}

.searchboxinputstyles[b-483x6vjveh] {
    width: 85%;
    border: 0px solid #DDD;
    padding-left: 40px;
    box-shadow: none;
}

.searchboxiconstyles[b-483x6vjveh] {
    position: absolute;
    padding-top: 10px;
    padding-left: 10px;
    z-index: 20;
    background-color: transparent
}

.searchboxinputstyles:focus[b-483x6vjveh] {
    outline: 0px !important;
    box-shadow: none !important;
}

.emojiDivSendMessage[b-483x6vjveh] {
    cursor: pointer;
    overflow: hidden;
    margin-left: -5px;
    height: 30px;
    font-size: 20px;
    margin-top: 4px;
    border: 0px;
    z-index: 10;
    position: absolute
}

    .emojiDivSendMessage:hover[b-483x6vjveh] {
        transform: scale(1.1);
    }

.attachDivSendMessage[b-483x6vjveh] {
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
    border: 0px;
    height: 30px;
    margin-top: 4px;
    margin-right: -15px;
    text-align: right;
    padding-left: 5px;
    margin-left: -10px;
    position: absolute
}

.messageinputstyles[b-483x6vjveh] {
    width: 100%
}

.iframestyles[b-483x6vjveh] {
    width: 100%;
    height: 100%;
    border: none;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

    .iframestyles .ratio[b-483x6vjveh] {
        display: block;
        width: 100%;
        height: auto;
    }

.iframestylesdiv[b-483x6vjveh] {
    width: 100%;
    height: auto;
    overflow: hidden
}

    .iframestylesdiv img[b-483x6vjveh] {
        width: 100%;
        height: 100%;
        padding-bottom: 15px;
    }

    .iframestylesdiv iframe[b-483x6vjveh] {
        height: 400px;
        width: 100%
    }

.pdfmedia[b-483x6vjveh] {
    height: 400px;
}

.navbartabs[b-483x6vjveh] {
    overflow: hidden;
    margin-left: 2px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-top: -18px;
    font-size: 13px;
}

    .navbartabs li[b-483x6vjveh] {
        overflow: hidden;
        margin-right: 5px;
        border-radius: 5px;
        overflow: hidden;
        white-space: nowrap
    }

        .navbartabs li a[b-483x6vjveh] {
            font-size: 11px;
            padding-bottom: 7px
        }

        .navbartabs li button[b-483x6vjveh] {
            font-size: 11px;
            padding-bottom: 7px
        }

/*.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #808080;
}*/
/* not active (faded) */
.nav-pills .pill-1 .nav-link:not(.active)[b-483x6vjveh] {
    background-color: transparent;
    color: black;
}

.navlinkBM:hover[b-483x6vjveh] {
    background-color: #0d6efd !important;
    color: white !important;
}

/* active (faded) */
.nav-pills .pill-1 .nav-link[b-483x6vjveh] {
    background-color: #0d6efd;
    color: white;
}

/* not active (faded) */
.nav-pills .pill-2 .nav-link:not(.active)[b-483x6vjveh] {
    background-color: transparent;
    color: black;
}

.navlinkWhatsapp:hover[b-483x6vjveh] {
    background-color: #198754 !important;
    color: white !important;
}

/* active (faded) */
.nav-pills .pill-2 .nav-link[b-483x6vjveh] {
    background-color: #198754;
    color: white;
}

/* not active (faded) */
.nav-pills .pill-3 .nav-link:not(.active)[b-483x6vjveh] {
    background-color: transparent;
    color: black;
}

/* active (faded) */
.nav-pills .pill-3 .nav-link[b-483x6vjveh] {
    background-color: #6c757d;
    color: white;
}

.navlinkChatbox:hover[b-483x6vjveh] {
    background-color: #dd3b1e !important;
    color: white !important;
}

/* not active (faded) */
.nav-pills .pill-4 .nav-link:not(.active)[b-483x6vjveh] {
    background-color: transparent;
    color: black;
}

/* active (faded) */
.nav-pills .pill-4 .nav-link[b-483x6vjveh] {
    background-color: #dd3b1e;
    color: white;
}

.checkstyle[b-483x6vjveh] {
    font-size: 12px;
    background-color: transparent;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.checkstyle:hover[b-483x6vjveh] {
    color: #3b82f6;
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

.previewParent[b-483x6vjveh] {
    position: absolute;
    width: 40%;
    height: 42%;
    background-color: transparent;
    bottom: 75px;
    right: 3%;
    z-index: 88;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

    .previewParent button[b-483x6vjveh] {
        background-color: white;
        border: 0px;
        color: black;
        margin-right: 5px;
        margin-top: 4px
    }

    .previewParent p[b-483x6vjveh] {
        background-color: white;
        border: 0px;
        color: black;
        margin-left: 5px;
        padding-top: 7px
    }

.previewChild[b-483x6vjveh] {
    margin-top: -5px;
    width: 100%;
    height: 200px;
}

.select[b-483x6vjveh] {
    background-color: red !important
}

/* not active (faded) */
.nav-pills .pill-smiley .nav-link:not(.active)[b-483x6vjveh] {
    background-color: transparent;
    color: black;
}

/* active (faded) */
.nav-pills .pill-smiley .nav-link[b-483x6vjveh] {
    background-color: #6c757d;
    color: white;
}

.noteItem[b-483x6vjveh] {
    margin-left: 5px;
    background-color: #f2f2f2;
    border: 0px solid #f2f2f2;
}

.sendMessageComponent[b-483x6vjveh] {
}

.title[b-483x6vjveh] {
    margin-left: 120px;
    margin-top: 1.5%;
    color: #595959;
    margin-bottom: -10px
}

.divider[b-483x6vjveh] {
    margin-left: 100px;
    margin-right: 80px
}

.messageFunctions[b-483x6vjveh] {
    display: flex;
    background-color: transparent;
    width: auto;
    float: right;
    margin-right: calc(100vw - 98.6vw);
    margin-top: 5px
}

.sendMessageIcons[b-483x6vjveh] {
    overflow: hidden;
    background-color: transparent;
    width: calc(100vw - 98vw);
    margin-top: -2px
}

.sendmessageicon[b-483x6vjveh] {
    position: absolute;
    cursor: default;
    color: black;
    background-color: transparent;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 4px;
    font-size: 10px;
    top: 0;
    height: 20px;
    font-weight: 500
}

.headerBar[b-483x6vjveh] {
    width: 90%;
    margin-left: -50px
}

.headerBarTitle[b-483x6vjveh] {
    margin-left: 8%
}

/* Advanced Message Animations */
@keyframes messageSlideInLeft-b-483x6vjveh {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.8);
        filter: blur(5px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes messageSlideInRight-b-483x6vjveh {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.8);
        filter: blur(5px);
    }
    60% {
        opacity: 0.8;
        transform: translateX(-5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slideInUp-b-483x6vjveh {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

@keyframes slideInLeft-b-483x6vjveh {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

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

@keyframes slideInRight-b-483x6vjveh {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

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

@keyframes slideInDown-b-483x6vjveh {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

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

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

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp-b-483x6vjveh {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

@keyframes bounceIn-b-483x6vjveh {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomIn-b-483x6vjveh {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-b-483x6vjveh {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake-b-483x6vjveh {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Performance Optimizations */
.columnRightContainer[b-483x6vjveh],
.columnRightContainer *[b-483x6vjveh],
.incoming_msg[b-483x6vjveh],
.outgoing_msg[b-483x6vjveh],
.received_withd_msg p[b-483x6vjveh],
.sent_msg p[b-483x6vjveh] {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .incoming_msg[b-483x6vjveh],
    .outgoing_msg[b-483x6vjveh],
    .received_withd_msg p[b-483x6vjveh],
    .sent_msg p[b-483x6vjveh] {
        animation: none;
        transition: none;
    }

    .incoming_msg:hover[b-483x6vjveh],
    .outgoing_msg:hover[b-483x6vjveh],
    .received_withd_msg p:hover[b-483x6vjveh],
    .sent_msg p:hover[b-483x6vjveh] {
        transform: none;
    }
}

.mobile-container[b-483x6vjveh] {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Mobile-specific hover effects */
@media (max-width: 768px) {
    .mud-card:active[b-483x6vjveh] {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .mud-button:active[b-483x6vjveh] {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
}
/* /Pages/Home.razor.rz.scp.css */
/* Enhanced Animations */
@keyframes fadeIn-b-fil6gopywi {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp-b-fil6gopywi {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounceIn-b-fil6gopywi {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.1) rotate(5deg);
    }
    70% {
        transform: scale(0.95) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes pulse-b-fil6gopywi {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

@keyframes float-b-fil6gopywi {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes bubbleFloat-b-fil6gopywi {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes gradientShift-b-fil6gopywi {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shimmer-b-fil6gopywi {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Enhanced Animation Classes */
.animate-fade-in[b-fil6gopywi] {
    animation: fadeIn-b-fil6gopywi 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animated-text[b-fil6gopywi] {
    animation: textSlideIn-b-fil6gopywi 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes textSlideIn-b-fil6gopywi {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-up[b-fil6gopywi] {
    animation: slideUp-b-fil6gopywi 1s cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}

.animate-bounce-in[b-fil6gopywi] {
    animation: bounceIn-b-fil6gopywi 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-float[b-fil6gopywi] {
    animation: float-b-fil6gopywi 6s ease-in-out infinite;
}

/* Floating Bubbles Background */
.bubbles-container[b-fil6gopywi] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.bubble[b-fil6gopywi] {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: bubbleFloat-b-fil6gopywi linear infinite;
}

.bubble-0[b-fil6gopywi] { width: 40px; height: 40px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.bubble-1[b-fil6gopywi] { width: 60px; height: 60px; left: 20%; animation-duration: 10s; animation-delay: 1s; }
.bubble-2[b-fil6gopywi] { width: 30px; height: 30px; left: 30%; animation-duration: 7s; animation-delay: 2s; }
.bubble-3[b-fil6gopywi] { width: 80px; height: 80px; left: 40%; animation-duration: 12s; animation-delay: 0.5s; }
.bubble-4[b-fil6gopywi] { width: 25px; height: 25px; left: 50%; animation-duration: 9s; animation-delay: 1.5s; }
.bubble-5[b-fil6gopywi] { width: 35px; height: 35px; left: 60%; animation-duration: 8s; animation-delay: 3s; }
.bubble-6[b-fil6gopywi] { width: 70px; height: 70px; left: 70%; animation-duration: 11s; animation-delay: 0.8s; }
.bubble-7[b-fil6gopywi] { width: 45px; height: 45px; left: 80%; animation-duration: 9s; animation-delay: 2.5s; }
.bubble-8[b-fil6gopywi] { width: 55px; height: 55px; left: 90%; animation-duration: 10s; animation-delay: 1.2s; }
.bubble-9[b-fil6gopywi] { width: 25px; height: 25px; left: 15%; animation-duration: 6s; animation-delay: 4s; }
.bubble-10[b-fil6gopywi] { width: 65px; height: 65px; left: 25%; animation-duration: 13s; animation-delay: 0.3s; }
.bubble-11[b-fil6gopywi] { width: 40px; height: 40px; left: 35%; animation-duration: 8s; animation-delay: 2.8s; }
.bubble-12[b-fil6gopywi] { width: 75px; height: 75px; left: 45%; animation-duration: 14s; animation-delay: 1.8s; }
.bubble-13[b-fil6gopywi] { width: 30px; height: 30px; left: 65%; animation-duration: 7s; animation-delay: 3.5s; }
.bubble-14[b-fil6gopywi] { width: 50px; height: 50px; left: 85%; animation-duration: 9s; animation-delay: 0.7s; }

/* Animated Background */
.animated-background[b-fil6gopywi] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #667eea, #764ba2, #667eea, #764ba2);
    background-size: 400% 400%;
    animation: gradientShift-b-fil6gopywi 15s ease infinite;
    opacity: 0.03;
    z-index: -3;
}

/* Modern Section Headers */
.modern-section-header[b-fil6gopywi] {
    text-align: center;
    margin: 40px 0 30px 0;
    padding: 20px;
    position: relative;
}

.modern-title[b-fil6gopywi] {
    color: #667eea !important;
    font-weight: 700 !important;
    font-size: 2rem !important;
    text-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow-b-fil6gopywi 3s ease-in-out infinite alternate;
}

.modern-title[b-fil6gopywi]::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: underlineExpand-b-fil6gopywi 0.8s ease-out 0.5s both;
}

.modern-subtitle[b-fil6gopywi] {
    color: #6b7280 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    margin-top: 8px !important;
    opacity: 0;
    animation: subtitleFadeIn-b-fil6gopywi 0.8s ease-out 0.7s both;
}

@keyframes titleGlow-b-fil6gopywi {
    0% { text-shadow: 0 4px 8px rgba(102, 126, 234, 0.2); }
    100% { text-shadow: 0 4px 16px rgba(102, 126, 234, 0.4); }
}

@keyframes underlineExpand-b-fil6gopywi {
    0% { width: 0; }
    100% { width: 80px; }
}

@keyframes subtitleFadeIn-b-fil6gopywi {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Loading Text Animation */
.loading-text[b-fil6gopywi] {
    margin-left: -20px !important;
    color: #667eea !important;
    font-weight: 500 !important;
    animation: loadingPulse-b-fil6gopywi 1.5s ease-in-out infinite;
}

@keyframes loadingPulse-b-fil6gopywi {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Legacy Section Headers */
.section-header[b-fil6gopywi] {
    text-align: center;
    margin: 30px 0 20px 0;
    padding: 0 20px;
}

.section-title[b-fil6gopywi] {
    color: #667eea !important;
    font-weight: 600 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.section-title[b-fil6gopywi]::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Bottom Right Decorative Image */
.bottom-right-image[b-fil6gopywi] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.6;
    transition: all 0.3s ease;
    max-width: 200px;
    max-height: 200px;
}

.bottom-right-image img[b-fil6gopywi] {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.bottom-right-image:hover[b-fil6gopywi] {
    opacity: 0.8;
    transform: scale(1.05);
}

.bottom-right-image:hover img[b-fil6gopywi] {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Admin Dashboard Stats Section */
.dashboard-stats-section[b-fil6gopywi] {
    margin: 24px 0;
    padding: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.dashboard-stats-section[b-fil6gopywi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.dashboard-header[b-fil6gopywi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.dashboard-title[b-fil6gopywi] {
    color: white !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-title-icon[b-fil6gopywi] {
    font-size: 1.5rem !important;
    color: rgba(255, 255, 255, 0.9);
}

.live-indicator[b-fil6gopywi] {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: absolute;
    right: 20%;
    top: -54px;
}

.pulse-dot[b-fil6gopywi] {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-dot-b-fil6gopywi 2s infinite;
}

@keyframes pulse-dot-b-fil6gopywi {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-text[b-fil6gopywi] {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
}

.stats-grid[b-fil6gopywi] {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.admin-stats-card[b-fil6gopywi] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
   /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);*/
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 140px;
}

.admin-stats-card[b-fil6gopywi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.admin-stats-card:hover[b-fil6gopywi]::before {
    left: 100%;
}

.admin-stats-card:hover[b-fil6gopywi] {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-background-pattern[b-fil6gopywi] {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.chat-card .card-background-pattern[b-fil6gopywi] {
    background: linear-gradient(135deg, #10b981, #059669);
}

.queue-card .card-background-pattern[b-fil6gopywi] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.users-card .card-background-pattern[b-fil6gopywi] {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.sessions-card .card-background-pattern[b-fil6gopywi] {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.admin-stats-card:hover .card-background-pattern[b-fil6gopywi] {
    transform: scale(1.2) rotate(10deg);
    opacity: 0.15;
}

.stats-content[b-fil6gopywi] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.icon-container[b-fil6gopywi] {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.chat-bg[b-fil6gopywi] {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.queue-bg[b-fil6gopywi] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.users-bg[b-fil6gopywi] {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.sessions-bg[b-fil6gopywi] {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.stats-icon[b-fil6gopywi] {
    font-size: 1.75rem !important;
    color: white;
}

.stats-info[b-fil6gopywi] {
    flex: 1;
}

.stats-number[b-fil6gopywi] {
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 4px !important;
    line-height: 1.2;
}

.stats-label[b-fil6gopywi] {
    color: #6b7280 !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem !important;
    margin-bottom: 8px !important;
}

.mini-graph[b-fil6gopywi] {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: fit-content;
}

.mini-graph svg[b-fil6gopywi] {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.admin-stats-card:hover .mini-graph svg[b-fil6gopywi] {
    opacity: 1;
}

/* Mobile Styles */
.mobile-container[b-fil6gopywi] {
    padding: 12px 8px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.mobile-card[b-fil6gopywi] {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.mobile-card[b-fil6gopywi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.mobile-card:hover[b-fil6gopywi]::before {
    left: 100%;
}

.mobile-card:hover[b-fil6gopywi] {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.mobile-card-content[b-fil6gopywi] {
    height: 100%;
    gap: 16px;
}

.mobile-icon[b-fil6gopywi] {
    font-size: 2.5rem !important;
    color: white;
}

.mobile-text[b-fil6gopywi] {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: white;
}

.no-features-text[b-fil6gopywi] {
    color: #6c757d;
    font-style: italic;
    margin-top: 40px;
}

/* Desktop Container */
.desktop-container[b-fil6gopywi] {
    padding: 20px 0;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.widgets-container[b-fil6gopywi] {
    padding: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Enhanced Widget Card Styling */
.desktop-container .animate-slide-up[b-fil6gopywi] {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.desktop-container .animate-slide-up[b-fil6gopywi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.desktop-container .animate-slide-up:hover[b-fil6gopywi]::before {
    opacity: 1;
    transform: scale(1.02);
}

.desktop-container .animate-slide-up:hover[b-fil6gopywi] {
    transform: translateY(-12px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(102, 126, 234, 0.3));
}

.desktop-container .animate-slide-up:active[b-fil6gopywi] {
    transform: translateY(-8px) scale(1.02);
    transition: all 0.1s ease;
}

/* Enhanced Legacy Card Styles */
.cardRowGroup[b-fil6gopywi] {
    height: 100%;
}

.cardRow[b-fil6gopywi] {
    display: flex;
    justify-content: center;
    margin-bottom: -30px;
    z-index: 55;
}

.card[b-fil6gopywi] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 150px;
    width: 30%;
    border-radius: 20px;
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: -70px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card[b-fil6gopywi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.6s;
}

.card:hover[b-fil6gopywi]::before {
    left: 100%;
}

.card:hover[b-fil6gopywi] {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
    border-color: rgba(102, 126, 234, 0.3);
}

.card:active[b-fil6gopywi] {
    transform: translateY(-10px) scale(1.05);
    transition: all 0.1s ease;
}

.cardTitle[b-fil6gopywi] {
    font-size: 18px;
    font-weight: bold;
    color: #8c8c8c;
}

.card img[b-fil6gopywi] {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card:hover img[b-fil6gopywi] {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.widgetRow[b-fil6gopywi] {
    display: flex;
    margin-left: 15px;
    margin-top: -10px;
    overflow: hidden;
}

.widgetRowCard[b-fil6gopywi] {
    text-align: center;
    padding: 5px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid rgba(102, 126, 234, 0.1);
    height: 75px;
    width: 100px;
    margin-left: 10px;
    margin-bottom: 5px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.widgetRowCard[b-fil6gopywi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widgetRowCard:hover[b-fil6gopywi]::before {
    opacity: 1;
}

.widgetRowCard:hover[b-fil6gopywi] {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.widgetRowCard[b-fil6gopywi] {
    font-size: 20px;
    color: green;
    font-weight: 400;
}

/* Large Desktop Screens */
@media (min-width: 1920px) {
    .desktop-container[b-fil6gopywi] {
        max-width: 1800px;
        margin: 0 auto;
    }
    
    .widgets-container[b-fil6gopywi] {
        max-width: 90%;
    }
    
    .stats-grid[b-fil6gopywi] {
        max-width: 1600px;
    }
}

/* Standard Desktop Screens */
@media (min-width: 1200px) and (max-width: 1919px) {
    .desktop-container[b-fil6gopywi] {
        max-width: 100%;
        padding: 20px 2%;
    }
    
    .widgets-container[b-fil6gopywi] {
        max-width: 95%;
    }
}

/* Medium Desktop Screens */
@media (min-width: 992px) and (max-width: 1199px) {
    .desktop-container[b-fil6gopywi] {
        padding: 15px 1%;
    }
    
    .widgets-container[b-fil6gopywi] {
        max-width: 98%;
    }
    
    .admin-stats-card[b-fil6gopywi] {
        padding: 20px;
        height: 130px;
    }
    
    .stats-number[b-fil6gopywi] {
        font-size: 1.8rem !important;
    }
}

/* Small Desktop/Large Tablet Screens */
@media (min-width: 769px) and (max-width: 991px) {
    .desktop-container[b-fil6gopywi] {
        padding: 10px 1%;
        max-height: calc(100vh - 60px);
    }
    
    .widgets-container[b-fil6gopywi] {
        max-width: 100%;
        padding: 0 8px;
    }
    
    .admin-stats-card[b-fil6gopywi] {
        padding: 16px;
        height: 120px;
    }
    
    .stats-content[b-fil6gopywi] {
        gap: 12px;
    }
    
    .icon-container[b-fil6gopywi] {
        width: 48px;
        height: 48px;
    }
    
    .stats-icon[b-fil6gopywi] {
        font-size: 1.5rem !important;
    }
    
    .stats-number[b-fil6gopywi] {
        font-size: 1.6rem !important;
    }
    
    .bottom-right-image img[b-fil6gopywi] {
        width: 150px;
    }
}

/* Tablet Screens */
@media (max-width: 768px) {
    .dashboard-stats-section[b-fil6gopywi] {
        margin: 16px 0;
        padding: 16px;
    }
    
    .dashboard-header[b-fil6gopywi] {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .admin-stats-card[b-fil6gopywi] {
        padding: 16px;
        height: 120px;
    }
    
    .icon-container[b-fil6gopywi] {
        width: 48px;
        height: 48px;
    }
    
    .stats-icon[b-fil6gopywi] {
        font-size: 1.5rem !important;
    }
    
    .stats-number[b-fil6gopywi] {
        font-size: 1.75rem !important;
    }
    
    .mobile-container[b-fil6gopywi] {
        padding: 8px 4px;
    }
    
    .widgets-container[b-fil6gopywi] {
        width: 100% !important;
        padding: 0 2px !important;
    }
    
    .mobile-card[b-fil6gopywi] {
        padding: 16px;
        min-height: 70px;
    }
    
    .mobile-icon[b-fil6gopywi] {
        font-size: 1.8rem !important;
    }
    
    .mobile-text[b-fil6gopywi] {
        font-size: 1.1rem !important;
    }
    
    .bottom-right-image[b-fil6gopywi] {
        bottom: 8px;
        right: 8px;
    }
    
    .bottom-right-image img[b-fil6gopywi] {
        width: 70px;
    }
    
    .bubble[b-fil6gopywi] {
        display: block;
        opacity: 0.6;
        animation-duration: 12s, 15s, 10s, 18s, 14s, 11s, 16s, 13s, 17s, 9s, 19s, 12s, 20s, 10s, 15s;
    }
    
    .desktop-container .animate-slide-up:hover[b-fil6gopywi] {
        transform: translateY(-8px) scale(1.03);
    }
    
    .card:hover[b-fil6gopywi] {
        transform: translateY(-10px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .admin-stats-card[b-fil6gopywi] {
        padding: 12px;
        height: 100px;
    }
    
    .stats-content[b-fil6gopywi] {
        gap: 12px;
    }
    
    .stats-icon[b-fil6gopywi] {
        font-size: 1.25rem !important;
    }
    
    .stats-number[b-fil6gopywi] {
        font-size: 1.5rem !important;
    }
    
    .stats-label[b-fil6gopywi] {
        font-size: 0.7rem !important;
    }
    
    .mobile-container[b-fil6gopywi] {
        padding: 4px 2px;
    }
    
    .widgets-container[b-fil6gopywi] {
        width: 100% !important;
        padding: 0 1px !important;
    }
    
    .mobile-card[b-fil6gopywi] {
        padding: 12px;
        min-height: 60px;
    }
    
    .mobile-icon[b-fil6gopywi] {
        font-size: 1.5rem !important;
    }
    
    .mobile-text[b-fil6gopywi] {
        font-size: 0.9rem !important;
    }
    
    .bottom-right-image[b-fil6gopywi] {
        bottom: 5px;
        right: 5px;
    }
    
    .bottom-right-image img[b-fil6gopywi] {
        width: 50px;
    }
    
    .animated-background[b-fil6gopywi] {
        opacity: 0.02;
    }
    
    .bubble[b-fil6gopywi] {
        opacity: 0.4;
        animation-duration: 15s, 18s, 12s, 22s, 16s, 14s, 20s, 17s, 21s, 11s, 24s, 15s, 25s, 13s, 19s;
    }
    
    .bubbles-container[b-fil6gopywi] {
        will-change: transform;
    }
}

@media (max-width: 360px) {
    .mobile-container[b-fil6gopywi] {
        padding: 2px 1px;
    }
    
    .widgets-container[b-fil6gopywi] {
        width: 100% !important;
        padding: 0 !important;
    }
    
    .mobile-card[b-fil6gopywi] {
        padding: 8px;
        min-height: 50px;
    }
    
    .mobile-icon[b-fil6gopywi] {
        font-size: 1.2rem !important;
    }
    
    .mobile-text[b-fil6gopywi] {
        font-size: 0.8rem !important;
    }
    
    .bottom-right-image[b-fil6gopywi] {
        bottom: 2px;
        right: 2px;
    }
    
    .bottom-right-image img[b-fil6gopywi] {
        width: 40px;
    }
}

/* Viewport Height Constraints */
@media (max-height: 600px) {
    .desktop-container[b-fil6gopywi] {
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    
    .admin-stats-card[b-fil6gopywi] {
        height: 100px;
        padding: 12px;
    }
    
    .stats-number[b-fil6gopywi] {
        font-size: 1.4rem !important;
    }
    
    .bottom-right-image[b-fil6gopywi] {
        display: none;
    }
}

/* Ultra-wide screens */
@media (min-width: 2560px) {
    .desktop-container[b-fil6gopywi] {
        max-width: 2200px;
        margin: 0 auto;
    }
    
    .widgets-container[b-fil6gopywi] {
        max-width: 85%;
    }
}

/* Ensure scrollable content */
.desktop-container[b-fil6gopywi],
.mobile-container[b-fil6gopywi] {
    scrollbar-width: thin;
    scrollbar-color: rgba(102, 126, 234, 0.3) transparent;
}

.desktop-container[b-fil6gopywi]::-webkit-scrollbar,
.mobile-container[b-fil6gopywi]::-webkit-scrollbar {
    width: 6px;
}

.desktop-container[b-fil6gopywi]::-webkit-scrollbar-track,
.mobile-container[b-fil6gopywi]::-webkit-scrollbar-track {
    background: transparent;
}

.desktop-container[b-fil6gopywi]::-webkit-scrollbar-thumb,
.mobile-container[b-fil6gopywi]::-webkit-scrollbar-thumb {
    background-color: rgba(102, 126, 234, 0.3);
    border-radius: 3px;
}

.desktop-container[b-fil6gopywi]::-webkit-scrollbar-thumb:hover,
.mobile-container[b-fil6gopywi]::-webkit-scrollbar-thumb:hover {
    background-color: rgba(102, 126, 234, 0.5);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .admin-stats-card[b-fil6gopywi] {
      /*  background: rgba(45, 55, 72, 0.95);*/
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .stats-number[b-fil6gopywi] {
        color: #f7fafc !important;
    }
    
    .stats-label[b-fil6gopywi] {
        color: #a0aec0 !important;
    }
    
    .bubble[b-fil6gopywi] {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    }
    
    .bottom-right-image[b-fil6gopywi] {
        opacity: 0.4;
    }
    
    .animated-background[b-fil6gopywi] {
        opacity: 0.02;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .bubble[b-fil6gopywi],
    .animate-float[b-fil6gopywi],
    .animated-background[b-fil6gopywi] {
        animation: none;
    }
    
    .admin-stats-card[b-fil6gopywi],
    .mobile-card[b-fil6gopywi] {
        transition: none;
    }
}

/* Mobile bubble optimizations */
@media (max-width: 768px) {
    .bubble[b-fil6gopywi] {
        will-change: transform;
        transform: translateZ(0);
    }
    
    .bubble:nth-child(odd)[b-fil6gopywi] {
        opacity: 0.3;
    }
    
    .bubble:nth-child(even)[b-fil6gopywi] {
        opacity: 0.5;
    }
}
/* /Pages/Index.razor.rz.scp.css */
/* Modern Login Form Styles */

/* Animations */
@keyframes fadeIn-b-rttbutj4yy {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-rttbutj4yy {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft-b-rttbutj4yy {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight-b-rttbutj4yy {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float-b-rttbutj4yy {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes spin-b-rttbutj4yy {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-b-rttbutj4yy {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Animation Classes */
.animate-fade-in[b-rttbutj4yy] {
    animation: fadeIn-b-rttbutj4yy 0.8s ease-out;
}

.animate-slide-up[b-rttbutj4yy] {
    animation: slideUp-b-rttbutj4yy 0.8s ease-out;
}

.animate-slide-left[b-rttbutj4yy] {
    animation: slideLeft-b-rttbutj4yy 0.8s ease-out;
}

.animate-slide-right[b-rttbutj4yy] {
    animation: slideRight-b-rttbutj4yy 0.8s ease-out;
}

/* Loading Styles */
.loading-container[b-rttbutj4yy] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, white 0%, white 100%);
}

.loading-content[b-rttbutj4yy] {
    text-align: center;
    color: white;
}

.loading-spinner[b-rttbutj4yy] {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.spinner-ring[b-rttbutj4yy] {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin-b-rttbutj4yy 1s linear infinite;
}

.spinner-ring:nth-child(2)[b-rttbutj4yy] {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    animation-delay: -0.3s;
}

.spinner-ring:nth-child(3)[b-rttbutj4yy] {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    animation-delay: -0.6s;
}

.loading-text[b-rttbutj4yy] {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    color: dimgray !important;
}

/* Main Container */
.login-container[b-rttbutj4yy] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, white 0%, white 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* Background Shapes */
.background-shapes[b-rttbutj4yy] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape[b-rttbutj4yy] {
    position: absolute;
    background: #ebeef0;
    border-radius: 50%;
    animation: float-b-rttbutj4yy 6s ease-in-out infinite;
}

.shape-1[b-rttbutj4yy] {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 3s;

}

.shape-2[b-rttbutj4yy] {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3[b-rttbutj4yy] {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

.shape-4[b-rttbutj4yy] {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* Mobile Login Card */
.mobile-login-card[b-rttbutj4yy] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

/* Desktop Login Container */
.desktop-login-container[b-rttbutj4yy] {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
}

.login-card[b-rttbutj4yy] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    margin-top: -100px;
}

/* Welcome Panel */
.welcome-panel[b-rttbutj4yy] {
    background: linear-gradient(to right, #cce0ff 0%, #4d91ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.welcome-content[b-rttbutj4yy] {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.brand-section[b-rttbutj4yy] {
    margin-bottom: 40px;
}

.brand-icon[b-rttbutj4yy] {
    font-size: 3rem !important;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.brand-title[b-rttbutj4yy] {
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 8px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brand-subtitle[b-rttbutj4yy] {
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.welcome-illustration[b-rttbutj4yy] {
    margin: 30px 0;
}

.welcome-image[b-rttbutj4yy] {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    
   
}

.welcome-text[b-rttbutj4yy] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* Form Panel */
.form-panel[b-rttbutj4yy] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.form-content[b-rttbutj4yy] {
    width: 100%;
    max-width: 320px;
}

/* Login Header */
.login-header[b-rttbutj4yy] {
    text-align: center;
    margin-bottom: 40px;
}

.login-icon[b-rttbutj4yy] {
    font-size: 3rem !important;
    color: #667eea;
    margin-bottom: 20px;
}

.login-title[b-rttbutj4yy] {
    color: #2d3748 !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.login-subtitle[b-rttbutj4yy] {
    color: #718096 !important;
    font-weight: 400 !important;
}

/* Form Styles */
.login-form[b-rttbutj4yy] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.modern-input[b-rttbutj4yy] {
    transition: all 0.3s ease !important;
}

.modern-input:hover[b-rttbutj4yy] {
    transform: translateY(-2px);
}

.form-options[b-rttbutj4yy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -8px 0;
}

.remember-checkbox[b-rttbutj4yy] {
    font-size: 0.875rem;
}

.forgot-password-link[b-rttbutj4yy] {
    font-size: 0.875rem !important;
    text-transform: none !important;
    color: #667eea !important;
    padding: 4px 8px !important;
    min-width: auto !important;
}

.forgot-password-link:hover[b-rttbutj4yy] {
    background: rgba(102, 126, 234, 0.1) !important;
}

/* Login Button */
.login-button[b-rttbutj4yy] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-transform: none !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.login-button:hover:not(:disabled)[b-rttbutj4yy] {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4) !important;
    animation: pulse-b-rttbutj4yy 2s infinite;
}

.login-button:disabled[b-rttbutj4yy] {
    opacity: 0.7 !important;
}

/* Connection Warning */
.connection-warning[b-rttbutj4yy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    color: #dc2626;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-card[b-rttbutj4yy] {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .welcome-panel[b-rttbutj4yy] {
        padding: 40px 30px;
        min-height: 200px;
    }
    
    .form-panel[b-rttbutj4yy] {
        padding: 40px 30px;
    }
    
    .brand-title[b-rttbutj4yy] {
        font-size: 2rem !important;
    }
    
    .brand-subtitle[b-rttbutj4yy] {
        font-size: 1.25rem !important;
    }
    
    .welcome-image[b-rttbutj4yy] {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .login-container[b-rttbutj4yy] {
        padding: 16px;
    }
    
    .mobile-login-card[b-rttbutj4yy] {
        padding: 30px 20px;
    }
    
    .form-panel[b-rttbutj4yy] {
        padding: 30px 20px;
    }
    
    .welcome-panel[b-rttbutj4yy] {
        padding: 30px 20px;
    }
    
    .form-options[b-rttbutj4yy] {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Focus States */
.modern-input .mud-input-root:focus-within[b-rttbutj4yy] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

/* Custom Scrollbar */
[b-rttbutj4yy]::-webkit-scrollbar {
    width: 8px;
}

[b-rttbutj4yy]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

[b-rttbutj4yy]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

[b-rttbutj4yy]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
/* /Pages/Logout.razor.rz.scp.css */
/* /Pages/MobileContacts.razor.rz.scp.css */
.mobile-container[b-slf12ef3nf] {
    min-height: 100vh;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.header-bar[b-slf12ef3nf] {
    display: flex;
    align-items: center;
    padding: clamp(0.75rem, 4vw, 1rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0 0 1rem 1rem;
    margin-bottom: -10px;
    animation: slideDown-b-slf12ef3nf 0.5s ease-out;
}

.back-btn[b-slf12ef3nf] {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

    .back-btn:hover[b-slf12ef3nf] {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

.header-title[b-slf12ef3nf] {
    color: gray;
    font-weight: 600;
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    margin-left: 1rem;
}

.loading-spinner[b-slf12ef3nf] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    animation: fadeIn-b-slf12ef3nf 0.3s ease-in;
    color: black;
    border-color: red;
}

.spinner[b-slf12ef3nf] {
    width: 3rem;
    height: 3rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    border-color: red;
    animation: spin-b-slf12ef3nf 1s linear infinite;
}

.chat-item[b-slf12ef3nf] {
    margin: 0 clamp(0.75rem, 4vw, 1rem) 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: slideUp-b-slf12ef3nf 0.4s ease-out;
    animation-fill-mode: both;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

    .chat-item:hover[b-slf12ef3nf] {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 1);
    }

    .chat-item:active[b-slf12ef3nf] {
        transform: translateY(0) scale(0.98);
    }

.queue-item[b-slf12ef3nf] {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    animation: pulse-b-slf12ef3nf 2s infinite;
}

    .queue-item:hover[b-slf12ef3nf] {
        background: linear-gradient(135deg, #ff8a95 0%, #fdbde8 100%);
    }

.chat-content[b-slf12ef3nf] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.avatar[b-slf12ef3nf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.chat-item:hover .avatar[b-slf12ef3nf] {
    transform: scale(1.1);
}

.chat-info[b-slf12ef3nf] {
    flex: 1;
    min-width: 0;
}

.user-name[b-slf12ef3nf] {
    font-weight: 600;
    font-size: clamp(0.9rem, 4vw, 1rem);
    color: #2d3748;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.agent-name[b-slf12ef3nf] {
    font-size: clamp(0.75rem, 3vw, 0.85rem);
    color: #718096;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-meta[b-slf12ef3nf] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.notification-badge[b-slf12ef3nf] {
    min-width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    animation: bounce-b-slf12ef3nf 0.5s ease-out;
}

.notification-active[b-slf12ef3nf] {
    background: linear-gradient(135deg, #e53e3e 0%, #fc8181 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.notification-inactive[b-slf12ef3nf] {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: #a0aec0;
}

.timestamp[b-slf12ef3nf] {
    font-size: clamp(0.7rem, 3vw, 0.75rem);
    color: #a0aec0;
    white-space: nowrap;
}

.empty-state[b-slf12ef3nf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40vh;
    color: dimgray;
    animation: fadeIn-b-slf12ef3nf 0.5s ease-in;
}

.empty-icon[b-slf12ef3nf] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
    color: dimgray;
}

.tab-content[b-slf12ef3nf] {
    height: calc(100vh - 14rem);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-top: 5px;
}

    .tab-content[b-slf12ef3nf]::-webkit-scrollbar {
        width: 4px;
    }

    .tab-content[b-slf12ef3nf]::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .tab-content[b-slf12ef3nf]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }

@keyframes slideDown-b-slf12ef3nf {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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

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

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

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

    to {
        opacity: 1;
    }
}

@keyframes spin-b-slf12ef3nf {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce-b-slf12ef3nf {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }

    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }

    70% {
        transform: translate3d(0, -4px, 0);
    }

    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes pulse-b-slf12ef3nf {
    0% {
        box-shadow: 0 8px 32px rgba(255, 154, 158, 0.1);
    }

    50% {
        box-shadow: 0 8px 32px rgba(255, 154, 158, 0.3);
    }

    100% {
        box-shadow: 0 8px 32px rgba(255, 154, 158, 0.1);
    }
}

@media (max-width: 480px) {
    .chat-item[b-slf12ef3nf] {
        margin: 0 0.5rem 0.75rem;
        padding: 0.75rem;
    }

    .chat-content[b-slf12ef3nf] {
        gap: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *[b-slf12ef3nf] {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* /Pages/MobileMessages.razor.rz.scp.css */
/* Modern Mobile Messages Styles */
.mobile-messages-container[b-tv4ddeopfj] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    max-height: 100vh;
    max-height: 100dvh;
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100%;
}

/* Header Styles */
.mobile-header[b-tv4ddeopfj] {
    display: flex;
    align-items: center;
    padding: max(env(safe-area-inset-top), 1rem) 1rem 1rem 1rem;
    background: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    position: sticky;
    top: 0;
    min-height: 60px;
    flex-shrink: 0;
}

.back-button[b-tv4ddeopfj] {
    margin-right: 1rem;
    transition: transform 0.2s ease;
}

.back-button:hover[b-tv4ddeopfj] {
    transform: scale(1.1);
}

.header-title[b-tv4ddeopfj] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
}

.sending-indicator[b-tv4ddeopfj] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
}

.sending-text[b-tv4ddeopfj] {
    font-size: 0.875rem;
    font-style: italic;
}

/* Chat Info Bar */
.chat-info-bar[b-tv4ddeopfj] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.chat-info[b-tv4ddeopfj] {
    display: flex;
    flex-direction: column;
}

.chat-username[b-tv4ddeopfj] {
    font-weight: 600;
    font-size: 0.875rem;
    color: #2c3e50;
}

.chat-platform[b-tv4ddeopfj] {
    font-size: 0.75rem;
    color: #7f8c8d;
    text-transform: uppercase;
}

.close-button[b-tv4ddeopfj] {
    transition: transform 0.2s ease;
}

.close-button:hover[b-tv4ddeopfj] {
    transform: rotate(90deg);
}

/* Messages Container */
.messages-container[b-tv4ddeopfj] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem;
    scroll-behavior: smooth;
    background: transparent;
    min-height: 0; /* Allow flex shrinking */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.messages-container[b-tv4ddeopfj]::-webkit-scrollbar {
    width: 4px;
}

.messages-container[b-tv4ddeopfj]::-webkit-scrollbar-track {
    background: transparent;
}

.messages-container[b-tv4ddeopfj]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Loading and Empty States */
.loading-container[b-tv4ddeopfj], .empty-messages[b-tv4ddeopfj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
    gap: 1rem;
}

.loading-text[b-tv4ddeopfj], .empty-text[b-tv4ddeopfj] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.empty-icon[b-tv4ddeopfj] {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Message Bubbles */
.message-bubble[b-tv4ddeopfj] {
    margin-bottom: 1rem;
    max-width: 85%;
    animation: slideIn-b-tv4ddeopfj 0.3s ease-out;
}

.message-bubble.incoming[b-tv4ddeopfj] {
    align-self: flex-start;
}

.message-bubble.outgoing[b-tv4ddeopfj] {
    align-self: flex-end;
    margin-left: auto;
}

.message-content[b-tv4ddeopfj] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.25rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.message-bubble.outgoing .message-content[b-tv4ddeopfj] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.message-bubble.incoming .message-content[b-tv4ddeopfj]::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent rgba(255, 255, 255, 0.95) transparent transparent;
}

.message-bubble.outgoing .message-content[b-tv4ddeopfj]::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent #667eea;
}

/* Message Text */
.message-text[b-tv4ddeopfj] {
    font-size: 0.875rem;
    line-height: 1.4;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 0.5rem;
}

.message-bubble.outgoing .message-text[b-tv4ddeopfj] {
    color: white;
}

/* Media Containers */
.media-container[b-tv4ddeopfj] {
    margin-top: 0.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.media-image[b-tv4ddeopfj], .media-video[b-tv4ddeopfj] {
    width: 100%;
    max-width: min(300px, 80vw);
    height: auto;
    border-radius: 0.75rem;
    transition: transform 0.2s ease;
    object-fit: cover;
}

.media-image:hover[b-tv4ddeopfj], .media-video:hover[b-tv4ddeopfj] {
    transform: scale(1.02);
}

.media-audio[b-tv4ddeopfj] {
    width: 100%;
    max-width: 250px;
}

/* Location Styles */
.location-container[b-tv4ddeopfj] {
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
}

.location-map[b-tv4ddeopfj] {
    width: 100%;
    height: 200px;
    border: none;
}

.location-name[b-tv4ddeopfj] {
    font-weight: 600;
    padding: 0.5rem;
    font-size: 0.875rem;
}

.location-address[b-tv4ddeopfj] {
    padding: 0 0.5rem;
    font-size: 0.75rem;
    color: #7f8c8d;
}

.location-button[b-tv4ddeopfj] {
    margin: 0.5rem;
    border-radius: 0.5rem;
}

/* Message Meta */
.message-meta[b-tv4ddeopfj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.25rem;
}

.message-info[b-tv4ddeopfj] {
    font-size: 0.625rem;
    opacity: 0.7;
}

.message-bubble.outgoing .message-info[b-tv4ddeopfj] {
    color: rgba(255, 255, 255, 0.8);
}

.message-status[b-tv4ddeopfj] {
    display: flex;
    align-items: center;
}

.status-sent[b-tv4ddeopfj] {
    color: #95a5a6;
    font-size: 0.875rem;
}

.status-delivered[b-tv4ddeopfj] {
    color: #95a5a6;
    font-size: 0.875rem;
}

.status-read[b-tv4ddeopfj] {
    color: #3498db;
    font-size: 0.875rem;
}

.message-bubble.outgoing .status-read[b-tv4ddeopfj] {
    color: rgba(255, 255, 255, 0.9);
}

/* Campaign Tag */
.campaign-tag[b-tv4ddeopfj] {
    float: right;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    padding: 0.125rem 0.25rem;
    font-size: 0.625rem;
    color: inherit;
    margin-left: 0.5rem;
}

/* Message Input */
.message-input-container[b-tv4ddeopfj] {
    padding: 1rem 1rem max(env(safe-area-inset-bottom), 1rem) 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
    z-index: 100;
    flex-shrink: 0;
}

.message-input[b-tv4ddeopfj] {
    width: 100%;
}

/* Animations */
@keyframes slideIn-b-tv4ddeopfj {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in[b-tv4ddeopfj] {
    animation: slideIn-b-tv4ddeopfj 0.3s ease-out;
}

/* Responsive Design */
@media (max-width: 480px) {
    .mobile-header[b-tv4ddeopfj] {
        padding: max(env(safe-area-inset-top), 0.75rem) 0.75rem 0.75rem 0.75rem;
        min-height: 56px;
    }
    
    .header-title[b-tv4ddeopfj] {
        font-size: 1.125rem;
    }
    
    .messages-container[b-tv4ddeopfj] {
        padding: 0.75rem;
    }
    
    .message-bubble[b-tv4ddeopfj] {
        max-width: 90%;
    }
    
    .message-input-container[b-tv4ddeopfj] {
        padding: 0.75rem 0.75rem max(env(safe-area-inset-bottom), 0.75rem) 0.75rem;
    }
    
    .media-image[b-tv4ddeopfj], .media-video[b-tv4ddeopfj] {
        max-width: 250px;
    }
    
    .location-map[b-tv4ddeopfj] {
        height: 150px;
    }
}

@media (max-width: 360px) {
    .mobile-header[b-tv4ddeopfj] {
        padding: max(env(safe-area-inset-top), 0.5rem) 0.5rem 0.5rem 0.5rem;
        min-height: 52px;
    }
    
    .header-title[b-tv4ddeopfj] {
        font-size: 1rem;
    }
    
    .messages-container[b-tv4ddeopfj] {
        padding: 0.5rem;
    }
    
    .message-bubble[b-tv4ddeopfj] {
        max-width: 95%;
    }
    
    .message-content[b-tv4ddeopfj] {
        padding: 0.5rem 0.75rem;
    }
    
    .message-input-container[b-tv4ddeopfj] {
        padding: 0.5rem 0.5rem max(env(safe-area-inset-bottom), 0.5rem) 0.5rem;
    }
    
    .media-image[b-tv4ddeopfj], .media-video[b-tv4ddeopfj] {
        max-width: 200px;
    }
    
    .location-map[b-tv4ddeopfj] {
        height: 120px;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .mobile-header[b-tv4ddeopfj] {
        padding: max(env(safe-area-inset-top), 0.375rem) 0.375rem 0.375rem 0.375rem;
        min-height: 48px;
    }
    
    .header-title[b-tv4ddeopfj] {
        font-size: 0.875rem;
    }
    
    .messages-container[b-tv4ddeopfj] {
        padding: 0.375rem;
    }
    
    .message-bubble[b-tv4ddeopfj] {
        max-width: 98%;
        margin-bottom: 0.75rem;
    }
    
    .message-content[b-tv4ddeopfj] {
        padding: 0.375rem 0.5rem;
        border-radius: 1rem;
    }
    
    .message-text[b-tv4ddeopfj] {
        font-size: 0.8125rem;
    }
    
    .message-input-container[b-tv4ddeopfj] {
        padding: 0.375rem 0.375rem max(env(safe-area-inset-bottom), 0.375rem) 0.375rem;
    }
    
    .media-image[b-tv4ddeopfj], .media-video[b-tv4ddeopfj] {
        max-width: 180px;
    }
    
    .location-map[b-tv4ddeopfj] {
        height: 100px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-header[b-tv4ddeopfj] {
        padding: 0.5rem;
        min-height: 44px;
    }
    
    .header-title[b-tv4ddeopfj] {
        font-size: 1rem;
    }
    
    .messages-container[b-tv4ddeopfj] {
        padding: 0.5rem;
    }
    
    .message-input-container[b-tv4ddeopfj] {
        padding: 0.5rem;
    }
    
    .location-map[b-tv4ddeopfj] {
        height: 120px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .mobile-messages-container[b-tv4ddeopfj] {
        /*background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);*/
    }
    
    .mobile-header[b-tv4ddeopfj], .chat-info-bar[b-tv4ddeopfj], .message-input-container[b-tv4ddeopfj] {
        /*background: rgba(44, 62, 80, 0.95);*/
        color: Black;
    }
    
    .header-title[b-tv4ddeopfj], .chat-username[b-tv4ddeopfj] {
        color: white;
    }

    .message-content[b-tv4ddeopfj] {
        /*background: rgba(52, 73, 94, 0.95);*/
        color: dimgray;
    }
    
    .message-bubble.incoming .message-content[b-tv4ddeopfj]::before {
        border-color: transparent rgba(52, 73, 94, 0.95) transparent transparent;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .message-content[b-tv4ddeopfj] {
        border: 2px solid #000;
    }
    
    .message-bubble.outgoing .message-content[b-tv4ddeopfj] {
        border-color: #fff;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-in[b-tv4ddeopfj] {
        animation: none;
    }
    
    .back-button:hover[b-tv4ddeopfj], .close-button:hover[b-tv4ddeopfj], .media-image:hover[b-tv4ddeopfj], .media-video:hover[b-tv4ddeopfj] {
        transform: none;
    }
}
/* /Pages/Organisation.razor.rz.scp.css */
/* Modern Organisation Page Styles */
/*.organisation-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.organisation-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
   /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');*/
    /*opacity: 0.3;
    pointer-events: none;
}*/

.header-section[b-ndqty3nnht] {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.header-icon[b-ndqty3nnht] {
    font-size: 3rem !important;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: pulse-b-ndqty3nnht 2s infinite;
}

.subtitle[b-ndqty3nnht] {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 300 !important;
    margin-top: 0.5rem;
}

.loading-container[b-ndqty3nnht] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 40vh;
    gap: 1.5rem;
}

.loading-text[b-ndqty3nnht] {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem !important;
}

.content-container[b-ndqty3nnht] {
    position: relative;
    z-index: 1;
}

.organisation-grid[b-ndqty3nnht] {
    max-width: 1200px;
    margin: 0 auto;
}

.card-item[b-ndqty3nnht] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Advanced Animations */
.fade-in[b-ndqty3nnht] {
    animation: fadeIn-b-ndqty3nnht 1s ease-out;
}

@keyframes fadeIn-b-ndqty3nnht {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-ndqty3nnht {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Staggered slide-up animations */
.animate-slide-up-0[b-ndqty3nnht] {
    animation: slideUp-b-ndqty3nnht 0.6s ease-out 0.1s both;
}

.animate-slide-up-1[b-ndqty3nnht] {
    animation: slideUp-b-ndqty3nnht 0.6s ease-out 0.2s both;
}

.animate-slide-up-2[b-ndqty3nnht] {
    animation: slideUp-b-ndqty3nnht 0.6s ease-out 0.3s both;
}

.animate-slide-up-3[b-ndqty3nnht] {
    animation: slideUp-b-ndqty3nnht 0.6s ease-out 0.4s both;
}

@keyframes slideUp-b-ndqty3nnht {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Card Styles */
.cardOrganisationRow[b-ndqty3nnht] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-left: 20px;
}

.cardOrganisationRowCard[b-ndqty3nnht] {
    width: 16rem;
    height: 10rem;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cardOrganisationRowCard[b-ndqty3nnht]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.cardOrganisationRowCard:hover[b-ndqty3nnht]::before {
    left: 100%;
}

.cardOrganisationRowCard:hover[b-ndqty3nnht] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cardOrganisationRowCard img[b-ndqty3nnht] {
    width: 200px;
    height: 150px;
    align-self: center;
    margin-top: 10px;
    transition: transform 0.3s ease;
}

.cardOrganisationRowCard:hover img[b-ndqty3nnht] {
    transform: scale(1.1);
}

.cardOrganisationRowCard div p[b-ndqty3nnht] {
    text-align: center;
    color: #595959;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cardOrganisationRowCard:hover div p[b-ndqty3nnht] {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .organisation-container[b-ndqty3nnht] {
        padding: 1rem 0.5rem;
    }
    
    .header-section[b-ndqty3nnht] {
        margin-bottom: 2rem;
    }
    
    .header-icon[b-ndqty3nnht] {
        font-size: 2.5rem !important;
    }
    
    .cardOrganisationRowCard[b-ndqty3nnht] {
        width: 14rem;
        height: 9rem;
    }
}

@media (max-width: 480px) {
    .cardOrganisationRowCard[b-ndqty3nnht] {
        width: 12rem;
        height: 8rem;
    }
    
    .cardOrganisationRowCard img[b-ndqty3nnht] {
        width: 160px;
        height: 120px;
    }
}

/* Loading Animation Enhancement */
.mud-progress-circular[b-ndqty3nnht] {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Smooth scrollbar */
[b-ndqty3nnht]::-webkit-scrollbar {
    width: 8px;
}

[b-ndqty3nnht]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

[b-ndqty3nnht]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

[b-ndqty3nnht]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
/* /Pages/Report.razor.rz.scp.css */
.headerFilter[b-g1zxuc6hcb] {
    display: flex;
    height: 7vh;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: auto;
    margin-left: 10.5%;
    width: 79%
}

    .headerFilter select[b-g1zxuc6hcb] {
        width: 15%;
        height: 50%;
        margin-top: 1.2%;
        margin-left: 20px;
        font-size: 11px;
        padding-bottom: 4px;
        padding-top: -10px
    }

    .headerFilter button[b-g1zxuc6hcb] {
        margin-top: 1.4%;
        margin-right: 20px;
        width: 8%;
        height: 50%;
        font-size: 11px;
        padding-top: -10px;
        padding-bottom: 4px;
    }

.bodyParent[b-g1zxuc6hcb] {
    display: flex;
    margin-right: auto;
    margin-left: 12%;
    width: 100%
}

.bodyReport[b-g1zxuc6hcb] {
    display: flex;
    overflow-y: hidden;
    width: 95%;
    margin-bottom: 20px;
    padding: 10px;
    margin-left: -55px
}

.navTabsStyles[b-g1zxuc6hcb] {
    margin-bottom: 10px;
    width: 81.5vw;
    margin-left: 120px;
    margin-top: -10px
}

.dateStyles[b-g1zxuc6hcb] {
    display: flex
}

    .dateStyles input[b-g1zxuc6hcb] {
        margin-top: 16px;
        margin-left: 10px;
        height: 40%;
        border: 1px solid #cccccc;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px
    }

    .dateStyles p[b-g1zxuc6hcb] {
        margin-top: 15px;
        margin-left: 20px;
        font-size: 14px
    }

.tableStyles[b-g1zxuc6hcb] {
    overflow-y: auto;
    overflow-x: auto;
    width: 65%;
    margin-left: -10px;
    font-size: 13px;
    height: 66vh
}

.tableHeader[b-g1zxuc6hcb] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartHeader[b-g1zxuc6hcb] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartStyles[b-g1zxuc6hcb] {
    width: 50%
}

.innerChartStyles[b-g1zxuc6hcb] {
    max-width: 100%;
    margin-left: -1px;
    margin-top: 80px
}

.nullStyles[b-g1zxuc6hcb] {
    margin-top: 50px;
    position: absolute;
    margin-left: 18%
}

.mobile-slide-in[b-g1zxuc6hcb] {
    animation: slideInUp-b-g1zxuc6hcb 0.6s ease-out;
}

.mobile-fade-in[b-g1zxuc6hcb] {
    animation: fadeIn-b-g1zxuc6hcb 0.8s ease-out;
}

.mobile-bounce[b-g1zxuc6hcb] {
    animation: bounceIn-b-g1zxuc6hcb 0.7s ease-out;
}

.mobile-scale[b-g1zxuc6hcb] {
    animation: scaleIn-b-g1zxuc6hcb 0.5s ease-out;
}

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

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

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

    to {
        opacity: 1;
    }
}

@keyframes bounceIn-b-g1zxuc6hcb {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleIn-b-g1zxuc6hcb {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.mobile-card[b-g1zxuc6hcb] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .mobile-card:active[b-g1zxuc6hcb] {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

/* Mobile Report Responsive Styles */
@media (max-width: 768px) {
    .mobile-card[b-g1zxuc6hcb] {
        margin: 0 2px 6px 2px !important;
    }
    
    .mobile-card .mud-card-content[b-g1zxuc6hcb] {
        padding: 6px !important;
    }
    
    .mobile-card .mud-card-actions[b-g1zxuc6hcb] {
        padding: 6px !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .mobile-card[b-g1zxuc6hcb] {
        margin: 0 1px 4px 1px !important;
    }
    
    .mobile-card .mud-card-content[b-g1zxuc6hcb] {
        padding: 4px !important;
    }
    
    .mobile-card .mud-card-actions[b-g1zxuc6hcb] {
        padding: 4px !important;
        padding-top: 0 !important;
    }
    
    .mobile-card .mud-text[b-g1zxuc6hcb] {
        font-size: 0.7rem !important;
    }
    
    .mobile-card .mud-chip[b-g1zxuc6hcb] {
        font-size: 0.6rem !important;
        height: 16px !important;
    }
}

@media (max-width: 360px) {
    .mobile-card[b-g1zxuc6hcb] {
        margin: 0 0 2px 0 !important;
    }
    
    .mobile-card .mud-card-content[b-g1zxuc6hcb] {
        padding: 2px !important;
    }
    
    .mobile-card .mud-card-actions[b-g1zxuc6hcb] {
        padding: 2px !important;
        padding-top: 0 !important;
    }
    
    .mobile-card .mud-text[b-g1zxuc6hcb] {
        font-size: 0.65rem !important;
    }
    
    .mobile-card .mud-chip[b-g1zxuc6hcb] {
        font-size: 0.55rem !important;
        height: 14px !important;
    }
    
    .mobile-card .mud-icon-button[b-g1zxuc6hcb] {
        width: 28px !important;
        height: 28px !important;
    }
}
/* /Pages/ReportView.razor.rz.scp.css */
.headerFilter[b-y7e5nsfa0c] {
    display: flex;
    height: 7vh;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: auto;
    margin-left: 10.5%;
    width: 79%
}

    .headerFilter select[b-y7e5nsfa0c] {
        width: 15%;
        height: 50%;
        margin-top: 1.2%;
        margin-left: 20px;
        font-size: 11px;
        padding-bottom: 4px;
        padding-top: -10px
    }

    .headerFilter button[b-y7e5nsfa0c] {
        margin-top: 1.4%;
        margin-right: 20px;
        width: 8%;
        height: 50%;
        font-size: 11px;
        padding-top: -10px;
        padding-bottom: 4px;
    }

.bodyParent[b-y7e5nsfa0c] {
    display: flex;
    margin-right: auto;
    margin-left: 12%;
    width: 100%
}

.bodyReport[b-y7e5nsfa0c] {
    display: flex;
    overflow-y: hidden;
    width: 95%;
    margin-bottom: 20px;
    padding: 10px;
    margin-left: -55px
}

.navTabsStyles[b-y7e5nsfa0c] {
    margin-bottom: 10px;
    width: 81.5vw;
    margin-left: 120px;
    margin-top: -10px
}

.dateStyles[b-y7e5nsfa0c] {
    display: flex
}

    .dateStyles input[b-y7e5nsfa0c] {
        margin-top: 16px;
        margin-left: 10px;
        height: 40%;
        border: 1px solid #cccccc;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px
    }

    .dateStyles p[b-y7e5nsfa0c] {
        margin-top: 15px;
        margin-left: 20px;
        font-size: 14px
    }

.tableStyles[b-y7e5nsfa0c] {
    overflow-y: auto;
    overflow-x: auto;
    width: 65%;
    margin-left: -10px;
    font-size: 13px;
    height: 66vh
}

.tableHeader[b-y7e5nsfa0c] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartHeader[b-y7e5nsfa0c] {
    text-align: center;
    margin-top: 10px;
    font-size: 18px
}

.chartStyles[b-y7e5nsfa0c] {
    width: 50%
}

.stats-card[b-y7e5nsfa0c] {
    min-height: 120px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
}

.innerChartStyles[b-y7e5nsfa0c] {
    max-width: 100%;
    margin-left: -1px;
    margin-top: 80px
}

.nullStyles[b-y7e5nsfa0c] {
    margin-top: 50px;
    position: absolute;
    margin-left: 18%
}

.mobile-slide-in[b-y7e5nsfa0c] {
    animation: slideInUp-b-y7e5nsfa0c 0.6s ease-out;
}

.mobile-fade-in[b-y7e5nsfa0c] {
    animation: fadeIn-b-y7e5nsfa0c 0.8s ease-out;
}

.mobile-bounce[b-y7e5nsfa0c] {
    animation: bounceIn-b-y7e5nsfa0c 0.7s ease-out;
}

.mobile-scale[b-y7e5nsfa0c] {
    animation: scaleIn-b-y7e5nsfa0c 0.5s ease-out;
}

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

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

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

    to {
        opacity: 1;
    }
}

@keyframes bounceIn-b-y7e5nsfa0c {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleIn-b-y7e5nsfa0c {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.mobile-card[b-y7e5nsfa0c] {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .mobile-card:active[b-y7e5nsfa0c] {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
/* /Pages/UserEditor.razor.rz.scp.css */
.userDetailDiv[b-2o5q8qyckl] {
    margin-top: 0px;
    margin-left: 100px;
    margin-right: 100px;
}

    .userDetailDiv form[b-2o5q8qyckl] {
        margin-left: 100px;
        margin-right: 100px;
    }

        .userDetailDiv form div[b-2o5q8qyckl] {
            margin-top: 15px
        }

.functionsDiv[b-2o5q8qyckl] {
    margin-bottom: 50px;
    margin-top: 2%;
    float: right;
    margin-right: 120px
}

.errorStyles[b-2o5q8qyckl] {
    margin-top: 20px;
    margin-left: 130px;
    font-size: 18px
}
/* /Pages/UserManagement.razor.rz.scp.css */
.userManagementDiv[b-2xrwa41mhh] {
    margin-right: auto;
    margin-left: 10.5%;
    width: 100%;
    overflow: hidden;
}

.userManagementDiv[b-2xrwa41mhh] {
    margin-right: auto;
    margin-left: 10.5%;
    width: 100%;
    overflow: hidden;
}

.tableStyles[b-2xrwa41mhh] {
    height: 70vh;
    overflow-y: auto;
    background-color: transparent;
    width: 78.5vw;
    margin-right: 50px;
    margin-top: -18px;
    font-size: 14px
}

.buttonStyles[b-2xrwa41mhh] {
    width: 150px;
    height: 40px;
    margin-top: 1.5%;
    margin-bottom: -5px;
    margin-right: 90px;
}

.filtersDiv[b-2xrwa41mhh] {
    margin-left: 110px;
}

.dividerDiv[b-2xrwa41mhh] {
    display: flex;
    width: 100%;
}

.userDetailDiv[b-2xrwa41mhh] {
    width: 30%;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-right: 110px;
    padding: 10px
}

    .userDetailDiv form[b-2xrwa41mhh] {
        margin-top: 20px
    }

.userInfo[b-2xrwa41mhh] {
    display: flex
}

    .userInfo p[b-2xrwa41mhh] {
        font-weight: 500;
        margin-left: 10px;
        margin-top: 10px;
    }

    .userInfo span[b-2xrwa41mhh] {
        height: 20px;
        margin-left: 10px;
        margin-top: 13px;
    }

    .userInfo button[b-2xrwa41mhh] {
        height: 20px;
        margin-left: 10px;
        margin-top: 10px;
        font-size: 12px;
        display: inline-flex;
        align-items: center;
    }

.headerDivider[b-2xrwa41mhh] {
    margin-top: -5px;
}

.userInfoTitle[b-2xrwa41mhh] {
    font-weight: 500;
    margin-left: 10px;
    margin-top: 10px;
}

.userInfoSubTitle[b-2xrwa41mhh] {
    font-weight: 300;
    margin-left: 20px;
    margin-top: -10px;
}

.seperator[b-2xrwa41mhh] {
    margin-top: 10px;
    height: 10px
}

.user-management-container[b-2xrwa41mhh] {
    animation: fadeInUp-b-2xrwa41mhh 0.6s ease-out;
    transform: translateY(0);
}

@keyframes fadeInUp-b-2xrwa41mhh {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.filter-bar[b-2xrwa41mhh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
    animation: slideInDown-b-2xrwa41mhh 0.5s ease-out;
}

@keyframes slideInDown-b-2xrwa41mhh {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.filter-grid[b-2xrwa41mhh] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

@media (max-width: 1200px) {
    .filter-grid[b-2xrwa41mhh] {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .filter-grid[b-2xrwa41mhh] {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.modern-table[b-2xrwa41mhh] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: scaleIn-b-2xrwa41mhh 0.4s ease-out 0.2s both;
}

@keyframes scaleIn-b-2xrwa41mhh {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.table-row[b-2xrwa41mhh] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .table-row:hover[b-2xrwa41mhh] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.status-chip[b-2xrwa41mhh] {
    animation: pulse-b-2xrwa41mhh 2s infinite;
}


.action-button[b-2xrwa41mhh] {
    transition: all 0.2s ease;
}

    .action-button:hover[b-2xrwa41mhh] {
        transform: scale(1.1);
    }

.loading-container[b-2xrwa41mhh] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60vh;
    animation: fadeIn-b-2xrwa41mhh 0.3s ease-in;
}


.stats-card[b-2xrwa41mhh] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    animation: bounceIn-b-2xrwa41mhh 0.6s ease-out 0.3s both;
}


.user-management-container[b-2xrwa41mhh] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 0;
}

.loading-container[b-2xrwa41mhh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 60vh;
    color: white;
}

.search-field .mud-input-root[b-2xrwa41mhh] {
    border-radius: 12px !important;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .search-field .mud-input-root:hover[b-2xrwa41mhh] {
        background: rgba(255,255,255,1) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

.filter-select .mud-input-root[b-2xrwa41mhh] {
    border-radius: 12px !important;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .filter-select .mud-input-root:hover[b-2xrwa41mhh] {
        background: rgba(255,255,255,1) !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

.clear-button[b-2xrwa41mhh] {
    border-radius: 12px !important;
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 600 !important;
}

    .clear-button:hover[b-2xrwa41mhh] {
        background: rgba(255,255,255,0.3) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

.stats-card:hover[b-2xrwa41mhh] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
}

.modern-table .mud-table-row:hover[b-2xrwa41mhh] {
    background: rgba(25,118,210,0.05) !important;
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.table-row[b-2xrwa41mhh] {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.status-chip-modern[b-2xrwa41mhh] {
    transition: all 0.2s ease;
    animation: pulse-b-2xrwa41mhh 2s infinite;
}

    .status-chip-modern:hover[b-2xrwa41mhh] {
        transform: scale(1.05);
    }

.action-button-modern:hover[b-2xrwa41mhh] {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
}

@keyframes fadeIn-b-2xrwa41mhh {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInUp-b-2xrwa41mhh {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes pulse-b-2xrwa41mhh {
    0% {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    50% {
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }

    100% {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}

.mud-table-container[b-2xrwa41mhh] {
    border-radius: 16px !important;
    overflow: hidden;
}

.mud-table-head .mud-table-row[b-2xrwa41mhh] {
    background: linear-gradient(135deg, rgba(25,118,210,0.1) 0%, rgba(25,118,210,0.05) 100%) !important;
}

.mud-table-body .mud-table-row:nth-child(even)[b-2xrwa41mhh] {
    background: rgba(248,250,252,0.5);
}

.mud-table-body .mud-table-row:nth-child(odd)[b-2xrwa41mhh] {
    background: rgba(255,255,255,0.8);
}

.mud-breadcrumbs[b-2xrwa41mhh] {
    animation: fadeInUp-b-2xrwa41mhh 0.5s ease;
}

.filter-bar[b-2xrwa41mhh] {
    animation: fadeInUp-b-2xrwa41mhh 0.6s ease;
}

.stats-card[b-2xrwa41mhh] {
    animation: fadeInUp-b-2xrwa41mhh 0.7s ease;
}

.modern-table[b-2xrwa41mhh] {
    animation: fadeInUp-b-2xrwa41mhh 0.8s ease;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .user-management-container[b-2xrwa41mhh] {
        padding: 10px 0;
    }

    .stats-card[b-2xrwa41mhh] {
        margin-bottom: 16px;
    }

    .filter-bar[b-2xrwa41mhh] {
        padding: 16px !important;
    }
}

/* Mobile Animations */
@keyframes fadeIn-b-2xrwa41mhh {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInDown-b-2xrwa41mhh {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

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

@keyframes slideInUp-b-2xrwa41mhh {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

@keyframes fadeInUp-b-2xrwa41mhh {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

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

@keyframes fadeInLeft-b-2xrwa41mhh {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

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

@keyframes bounceIn-b-2xrwa41mhh {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn-b-2xrwa41mhh {
    from {
        transform: rotate(-180deg);
        opacity: 0;
    }

    to {
        transform: rotate(0deg);
        opacity: 1;
    }
}

@keyframes shake-b-2xrwa41mhh {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes pulse-b-2xrwa41mhh {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Specific Styles */
.mobile-user-card:hover[b-2xrwa41mhh] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    cursor: pointer;
}

.mobile-stats-card:hover[b-2xrwa41mhh] {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mobile-filter-bar[b-2xrwa41mhh] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mobile-loading[b-2xrwa41mhh] {
    min-height: 200px;
    align-items: center;
}

.modern-confirm-modal[b-2xrwa41mhh] {
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,.45);
}

    /* dialog size */
    .modern-confirm-modal .modern-modal-dialog[b-2xrwa41mhh] {
        max-width: 720px;
        margin: 1.75rem auto;
    }

    /* main shell */
    .modern-confirm-modal .modern-modal-content[b-2xrwa41mhh] {
        border: none;
        border-radius: 18px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 25px 60px rgba(0,0,0,.25);
    }

    .modern-confirm-modal .modern-modal-header[b-2xrwa41mhh] {
        padding: 18px 20px;
        background: #ffffff;
        border-bottom: 1px solid #eef2f6;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .modern-confirm-modal .modal-icon-container[b-2xrwa41mhh] {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: #fbbf24; /* yellow */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 18px rgba(251,191,36,.25);
        flex-shrink: 0;
    }

    .modern-confirm-modal .warning-icon[b-2xrwa41mhh] {
        background: transparent;
        color: #ffffff;
        box-shadow: none;
    }

    .modern-confirm-modal .modal-title-container[b-2xrwa41mhh] {
        flex: 1;
        min-width: 0;
    }

    .modern-confirm-modal .modern-modal-title[b-2xrwa41mhh] {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #111827;
        line-height: 1.2;
    }

    .modern-confirm-modal .modal-subtitle[b-2xrwa41mhh] {
        margin: 2px 0 0 0;
        font-size: 13px;
        color: #9ca3af;
        font-weight: 500;
    }

    /* close button (top-right grey rounded square) */
    .modern-confirm-modal .modern-btn-close[b-2xrwa41mhh] {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: #f3f4f6;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #9ca3af;
        transition: .2s ease;
    }

        .modern-confirm-modal .modern-btn-close:hover[b-2xrwa41mhh] {
            background: #e5e7eb;
            color: #6b7280;
            transform: scale(1.03);
        }

    .modern-confirm-modal .modern-modal-body[b-2xrwa41mhh] {
        padding: 22px 22px 10px 22px;
        background: #ffffff;
    }

    .modern-confirm-modal .warning-message[b-2xrwa41mhh] {
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #f1b74c33;
        box-shadow: inset 0 0 0 1px rgba(251,191,36,.15);
        padding: 18px 18px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
    }

        /* left orange accent line */
        .modern-confirm-modal .warning-message[b-2xrwa41mhh]::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #f59e0b;
        }

    /* small warning icon inside the card */
    .modern-confirm-modal .message-icon[b-2xrwa41mhh] {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(251,191,36,.18);
        color: #f59e0b;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: 6px; /* so it doesn't sit on the accent bar */
    }

    .modern-confirm-modal .message-text p[b-2xrwa41mhh] {
        margin: 0;
        color: #111827;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 600;
    }

    /* ===== FOOTER ===== */
    .modern-confirm-modal .modern-modal-footer[b-2xrwa41mhh] {
        padding: 18px 22px 22px 22px;
        background: #ffffff;
        border-top: 0;
        display: flex;
        justify-content: center; /* screenshot shows centered buttons */
        gap: 14px;
    }

    .modern-confirm-modal .modern-btn[b-2xrwa41mhh] {
        height: 44px;
        min-width: 160px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    /* Cancel button */
    .modern-confirm-modal .btn-cancel[b-2xrwa41mhh] {
        background: #f3f4f6;
        border: 1px solid #e5e7eb;
        color: #6b7280;
        box-shadow: none;
    }

        .modern-confirm-modal .btn-cancel:hover[b-2xrwa41mhh] {
            background: #e5e7eb;
            color: #4b5563;
            transform: translateY(-1px);
        }

    /* Confirm button (blue) */
    .modern-confirm-modal .btn-confirm[b-2xrwa41mhh] {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        border: 1px solid rgba(37,99,235,.25);
        color: #ffffff;
        box-shadow: 0 14px 28px rgba(37,99,235,.25);
    }

        .modern-confirm-modal .btn-confirm:hover[b-2xrwa41mhh] {
            transform: translateY(-1px);
            box-shadow: 0 18px 34px rgba(37,99,235,.32);
        }

    .modern-confirm-modal .btn-icon[b-2xrwa41mhh] {
        color: #ffffff;
    }


/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-user-card[b-2xrwa41mhh] {
        margin-bottom: 12px;
    }

    .mobile-stats-card[b-2xrwa41mhh] {
        min-height: 100px;
    }
}
/* /Pages/WhatsAppAccount.razor.rz.scp.css */
.group[b-1q282whj4p] {
    width: 50%;
    margin-bottom: 25px;
}

    .group label[b-1q282whj4p] {
        display: block;
        margin-top: 26px;
        margin-bottom: 10px;
        margin-left: 11%;
    }

    .group input[b-1q282whj4p] {
        border: none;
        outline: none;
        padding: 20px;
        width: calc(100% - 40px);
        border-radius: 10px;
        background-color: #eaeff2;
        color: #3ba62f;
        font-size: 20px;
    }

    .group .power-container[b-1q282whj4p] {
        background-color: darkgray;
        width: 60%;
        height: 4px;
        border-radius: 5px;
        margin-left: 11%;
        margin-bottom: -30px;
    }

        .group .power-container #power-point[b-1q282whj4p] {
            background-color: #D73F40;
            width: 1%;
            height: 100%;
            border-radius: 5px;
            transition: 0.5s;
        }
/* /Shared/EmptyLayout.razor.rz.scp.css */
/*My Custom CSS*/
.parentNavBar[b-jt5b5agsf4] {
    height: 80px;
    overflow: visible !important;
}

.parentNavBarBrand[b-jt5b5agsf4] {
    width: 190px;
    height: 60px;
    margin-left: 0px;
}

.item[b-jt5b5agsf4] {
    padding: 0.25em;
    text-align: center;
    display: inline-block;
    width: 80px;
    height: calc(100% - 80px);
    background: whitesmoke;
    vertical-align: middle;
    position: absolute;
    -webkit-transition: all 0.3s ease-out;
    box-shadow: 5px 0 5px -5px #333;
    background-color: rgb(248, 249, 250)
}

    .item:hover[b-jt5b5agsf4] {
        cursor: pointer;
        left: 0;
        width: 200px;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        z-index: 999;
    }

    .item div a div[b-jt5b5agsf4] {
        margin-bottom: 10px
    }

        .item div a div i[b-jt5b5agsf4] {
            padding-top: 8px;
            margin-right: 10px;
            width: 70px;
            color: black;
        }

        .item div a div p[b-jt5b5agsf4] {
            padding-top: 2px;
            margin-right: 20px;
            color: black;
            display: none;
        }

            .item div a div p #item:hover[b-jt5b5agsf4] {
                display: block;
            }
/* /Shared/ErrorLayout.razor.rz.scp.css */
/* /Shared/HelpLayout.razor.rz.scp.css */
/* /Shared/LoadingLayout.razor.rz.scp.css */
/*My Custom CSS*/
.parentNavBar[b-335rupftk9] {
    height: 80px;
    overflow: visible !important;
}

.parentNavBarBrand[b-335rupftk9] {
    width: 190px;
    height: 60px;
    margin-left: 0px;
}

.item[b-335rupftk9] {
    padding: 0.25em;
    text-align: center;
    display: inline-block;
    width: 80px;
    height: calc(100% - 80px);
    background: whitesmoke;
    vertical-align: middle;
    position: absolute;
    -webkit-transition: all 0.3s ease-out;
    box-shadow: 5px 0 5px -5px #333;
    background-color: rgb(248, 249, 250)
}

    .item:hover[b-335rupftk9] {
        cursor: pointer;
        left: 0;
        width: 200px;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        z-index: 999;
    }

    .item div a div[b-335rupftk9] {
        margin-bottom: 10px
    }

        .item div a div i[b-335rupftk9] {
            padding-top: 8px;
            margin-right: 10px;
            width: 70px;
            color: black;
        }

        .item div a div p[b-335rupftk9] {
            padding-top: 2px;
            margin-right: 20px;
            color: black;
            display: none;
        }

            .item div a div p #item:hover[b-335rupftk9] {
                display: block;
            }
/* /Shared/MainLayout.razor.rz.scp.css */
/*.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row ::deep a, .top-row .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth) {
        display: none;
    }

    .top-row.auth {
        justify-content: space-between;
    }

    .top-row a, .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
*/
/* /Shared/ManagementLayout.razor.rz.scp.css */
.page[b-120yl8of5c] {
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeIn-b-120yl8of5c 0.6s ease-in-out;
}

main[b-120yl8of5c] {
    flex: 1;
}

.sidebar[b-120yl8of5c] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-120yl8of5c] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .top-row[b-120yl8of5c]  a, .top-row[b-120yl8of5c]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .top-row[b-120yl8of5c]  a:hover, .top-row[b-120yl8of5c]  .btn-link:hover {
            text-decoration: underline;
            transform: translateY(-1px);
        }

        .top-row[b-120yl8of5c]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

/* Modern Navbar Animations */
.modern-navbar[b-120yl8of5c] {
    animation: slideDown-b-120yl8of5c 0.5s ease-out;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modern-navbar:hover[b-120yl8of5c] {
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.25), 0 2px 25px 0 rgba(0, 0, 0, 0.22) !important;
}

/* Brand Logo Animation */
.brand-container[b-120yl8of5c] {
    animation: slideInLeft-b-120yl8of5c 0.6s ease-out;
}

.brand-logo[b-120yl8of5c] {
    transition: all 0.3s ease;
}

.brand-logo:hover[b-120yl8of5c] {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Portal Info Animation */
.portal-info[b-120yl8of5c] {
    animation: fadeInUp-b-120yl8of5c 0.7s ease-out;
}

.portal-title[b-120yl8of5c] {
    transition: all 0.3s ease;
}

.portal-title:hover[b-120yl8of5c] {
    color: #333 !important;
    transform: translateX(5px);
}

.portal-version[b-120yl8of5c] {
    transition: all 0.3s ease;
    opacity: 0.8;
}

.portal-version:hover[b-120yl8of5c] {
    opacity: 1;
}

/* User Elements */
.client-name[b-120yl8of5c] {
    animation: fadeInRight-b-120yl8of5c 0.6s ease-out;
    transition: all 0.3s ease;
}

.client-name:hover[b-120yl8of5c] {
    color: #333 !important;
    transform: translateY(-1px);
}

.user-avatar[b-120yl8of5c] {
    animation: bounceIn-b-120yl8of5c 0.8s ease-out;
    transition: all 0.3s ease;
}

.user-avatar:hover[b-120yl8of5c] {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Navigation Icon Buttons */
.nav-icon-btn[b-120yl8of5c] {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-icon-btn:hover[b-120yl8of5c] {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-icon-btn[b-120yl8of5c]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.nav-icon-btn:hover[b-120yl8of5c]::before {
    width: 100%;
    height: 100%;
}

/* Main Content Area */
.modern-main[b-120yl8of5c] {
    animation: fadeIn-b-120yl8of5c 0.8s ease-out;
}

.modern-content[b-120yl8of5c] {
    animation: slideInUp-b-120yl8of5c 0.6s ease-out;
    transition: all 0.3s ease;
}

.background-pattern[b-120yl8of5c] {
    animation: pulse-b-120yl8of5c 4s ease-in-out infinite;
}

/* Client Logo Animations */
.client-logo[b-120yl8of5c] {
    transition: all 0.4s ease;
    animation: fadeInBottomRight-b-120yl8of5c 1s ease-out;
}

.client-logo:hover[b-120yl8of5c] {
    transform: scale(1.05);
    opacity: 0.9 !important;
}

.small-logo:hover[b-120yl8of5c] {
    transform: scale(1.1) rotate(2deg);
}

.large-logo:hover[b-120yl8of5c] {
    transform: scale(1.03) translateX(-10px);
}

/* Footer Animations */
.footer-container[b-120yl8of5c] {
    animation: slideInUp-b-120yl8of5c 1s ease-out;
}

.footer-divider[b-120yl8of5c] {
    animation: expandWidth-b-120yl8of5c 1.2s ease-out;
    transition: all 0.3s ease;
}

.footer-divider:hover[b-120yl8of5c] {
    border-color: #666 !important;
}

.copyright-text[b-120yl8of5c] {
    animation: fadeIn-b-120yl8of5c 1.5s ease-out;
    transition: all 0.3s ease;
}

.copyright-text:hover[b-120yl8of5c] {
    color: #333 !important;
    transform: translateY(-1px);
}

/* Keyframe Animations */
@keyframes fadeIn-b-120yl8of5c {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown-b-120yl8of5c {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft-b-120yl8of5c {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight-b-120yl8of5c {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp-b-120yl8of5c {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRight-b-120yl8of5c {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounceIn-b-120yl8of5c {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInUp-b-120yl8of5c {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInBottomRight-b-120yl8of5c {
    from {
        transform: translate(30px, 30px);
        opacity: 0;
    }
    to {
        transform: translate(0, 0);
        opacity: 0.7;
    }
}

@keyframes pulse-b-120yl8of5c {
    0%, 100% {
        opacity: 0.03;
    }
    50% {
        opacity: 0.05;
    }
}

@keyframes expandWidth-b-120yl8of5c {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Loading animation for better perceived performance */
@keyframes shimmer-b-120yl8of5c {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading-shimmer[b-120yl8of5c] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer-b-120yl8of5c 1.5s infinite;
}

/* Micro-interactions for better UX */
.interactive-element[b-120yl8of5c] {
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.interactive-element:active[b-120yl8of5c] {
    transform: scale(0.98);
}

/* Smooth scrolling for better UX */
html[b-120yl8of5c] {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.nav-icon-btn:focus[b-120yl8of5c],
.user-avatar:focus[b-120yl8of5c],
.brand-logo:focus[b-120yl8of5c] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-120yl8of5c] {
        display: none;
    }

    .top-row.auth[b-120yl8of5c] {
        justify-content: space-between;
    }

    .top-row[b-120yl8of5c]  a, .top-row[b-120yl8of5c]  .btn-link {
        margin-left: 0;
    }

    /* Mobile optimizations */
    .portal-info[b-120yl8of5c] {
        left: 20px !important;
        margin-top: 10px !important;
    }

    .modern-navbar[b-120yl8of5c] {
        padding: 0.5rem;
    }

    .nav-icon-btn[b-120yl8of5c] {
        margin: 0 2px;
    }

    .client-name[b-120yl8of5c] {
        font-size: 14px !important;
        margin-right: 10px !important;
    }

    /* Reduce animation intensity on mobile */
    .brand-logo:hover[b-120yl8of5c],
    .user-avatar:hover[b-120yl8of5c],
    .nav-icon-btn:hover[b-120yl8of5c] {
        transform: scale(1.02);
    }
}

@media (min-width: 641px) {
    .page[b-120yl8of5c] {
        flex-direction: row;
    }

    .sidebar[b-120yl8of5c] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        transition: all 0.3s ease;
    }

    .top-row[b-120yl8of5c] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-120yl8of5c]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-120yl8of5c], article[b-120yl8of5c] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    /* Desktop enhancements */
    .modern-navbar:hover[b-120yl8of5c] {
        transform: translateY(-1px);
    }

    .footer-container:hover .copyright-text[b-120yl8of5c] {
        letter-spacing: 0.5px;
    }
}

/* Smooth transitions for all interactive elements */
*[b-120yl8of5c] {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Prevent animation on page load */
.preload *[b-120yl8of5c] {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}
/* /Shared/PageLayout.razor.rz.scp.css */
.page[b-rlsbeym05w] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.sidebar[b-rlsbeym05w] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-rlsbeym05w] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-rlsbeym05w]  a, .top-row[b-rlsbeym05w]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-rlsbeym05w]  a:hover, .top-row[b-rlsbeym05w]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-rlsbeym05w]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-rlsbeym05w] {
        display: none;
    }

    .top-row.auth[b-rlsbeym05w] {
        justify-content: space-between;
    }

    .top-row[b-rlsbeym05w]  a, .top-row[b-rlsbeym05w]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-rlsbeym05w] {
        flex-direction: row;
    }

    .sidebar[b-rlsbeym05w] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-rlsbeym05w] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-rlsbeym05w]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-rlsbeym05w], article[b-rlsbeym05w] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Modern Modal Styles */
.modern-modal-overlay[b-rlsbeym05w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-rlsbeym05w 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-modal-container[b-rlsbeym05w] {
    background: var(--mud-palette-surface);
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideInScale-b-rlsbeym05w 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.modern-modal-header[b-rlsbeym05w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.modern-modal-title[b-rlsbeym05w] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
    letter-spacing: -0.025em;
}

.modern-close-btn[b-rlsbeym05w] {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--mud-palette-text-secondary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-close-btn:hover[b-rlsbeym05w] {
    background: var(--mud-palette-action-hover);
    color: var(--mud-palette-text-primary);
    transform: scale(1.1);
}

.modern-modal-body[b-rlsbeym05w] {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

.about-content[b-rlsbeym05w] {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-header[b-rlsbeym05w] {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--mud-palette-divider);
}

.app-title[b-rlsbeym05w] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-info[b-rlsbeym05w] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: var(--mud-palette-background-grey);
    border-radius: 12px;
    border: 1px solid var(--mud-palette-divider);
}

.info-icon[b-rlsbeym05w] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon[b-rlsbeym05w] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: contain;
    animation: pulse-b-rlsbeym05w 2s infinite;
}

.info-content[b-rlsbeym05w] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.version-title[b-rlsbeym05w] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--mud-palette-text-primary);
    line-height: 1.4;
}

.version-message[b-rlsbeym05w] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--mud-palette-text-secondary);
    line-height: 1.4;
}

.info-actions[b-rlsbeym05w] {
    display: flex;
    align-items: center;
}

.update-btn[b-rlsbeym05w] {
    transition: all 0.2s ease;
}

.update-btn:hover[b-rlsbeym05w] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.modern-modal-footer[b-rlsbeym05w] {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--mud-palette-divider);
}

.close-btn[b-rlsbeym05w] {
    transition: all 0.2s ease;
}

.close-btn:hover[b-rlsbeym05w] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

/* Animations */
@keyframes fadeIn-b-rlsbeym05w {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInScale-b-rlsbeym05w {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse-b-rlsbeym05w {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 640px) {
    .modern-modal-container[b-rlsbeym05w] {
        width: 95%;
        margin: 20px;
    }
    
    .about-info[b-rlsbeym05w] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }
    
    .modern-modal-header[b-rlsbeym05w],
    .modern-modal-body[b-rlsbeym05w],
    .modern-modal-footer[b-rlsbeym05w] {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .modern-modal-overlay[b-rlsbeym05w] {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .modern-modal-container[b-rlsbeym05w] {
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.2);
    }
}
