/* /Components/Layout/components/Notifications/NotificationBell.razor.rz.scp.css */
.notification-bell[b-yrzddm0bfn] {
    position: relative;
    display: inline-block;
}

.notification-bell-button[b-yrzddm0bfn] {
    position: relative;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    cursor: pointer;
}

.notification-bell-button:hover[b-yrzddm0bfn] {
    background: var(--rz-primary-lighter);
    transform: scale(1.05);
}

.notification-bell-icon[b-yrzddm0bfn] {
    font-size: 1.75rem;
    color: var(--rz-base-700);
    transition: all 0.3s ease;
}

.notification-bell-button:hover .notification-bell-icon[b-yrzddm0bfn] {
    color: var(--rz-primary);
}

/* Badge styling */
.notification-badge[b-yrzddm0bfn] {
    position: absolute;
    top: 2px;
    right: 2px;
    transform: translate(30%, -20%);
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--rz-danger);
    color: white;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(217, 83, 79, 0.3);
    animation: badge-pulse-b-yrzddm0bfn 2s ease-in-out infinite;
}

@keyframes badge-pulse-b-yrzddm0bfn {

    0%,
    100% {
        transform: translate(30%, -20%) scale(1);
    }

    50% {
        transform: translate(30%, -20%) scale(1.1);
    }
}

/* Bell shake animation when new notification arrives */
.bell-shake[b-yrzddm0bfn] {
    animation: shake-b-yrzddm0bfn 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake-b-yrzddm0bfn {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* Tooltip notification near bell */
.notification-tooltip[b-yrzddm0bfn] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 12px;
    padding: 14px 18px;
    background: var(--rz-base-50);
    border-radius: var(--rz-border-radius);
    box-shadow: var(--rz-overlay-shadow);
    min-width: 280px;
    max-width: 320px;
    z-index: 1000;
    animation: tooltip-slide-in-b-yrzddm0bfn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
    border: var(--rz-overlay-border);
    border-left-width: 4px;
}

.notification-tooltip[b-yrzddm0bfn]::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--rz-base-50);
}

@keyframes tooltip-slide-in-b-yrzddm0bfn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-tooltip.severity-info[b-yrzddm0bfn] {
    border-left-color: var(--rz-info);
}

.notification-tooltip.severity-success[b-yrzddm0bfn] {
    border-left-color: var(--rz-success);
}

.notification-tooltip.severity-warning[b-yrzddm0bfn] {
    border-left-color: var(--rz-warning);
}

.notification-tooltip.severity-error[b-yrzddm0bfn] {
    border-left-color: var(--rz-danger);
}

.tooltip-header[b-yrzddm0bfn] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.tooltip-icon[b-yrzddm0bfn] {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tooltip-icon.severity-info[b-yrzddm0bfn] {
    color: var(--rz-info);
}

.tooltip-icon.severity-success[b-yrzddm0bfn] {
    color: var(--rz-success);
}

.tooltip-icon.severity-warning[b-yrzddm0bfn] {
    color: var(--rz-warning);
}

.tooltip-icon.severity-error[b-yrzddm0bfn] {
    color: var(--rz-danger);
}

.tooltip-title[b-yrzddm0bfn] {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--rz-base-900);
    flex: 1;
}

.tooltip-message[b-yrzddm0bfn] {
    font-size: 0.875rem;
    color: var(--rz-base-700);
    line-height: 1.5;
}

/* Dropdown positioning - prevent cutoff */
.notifications-dropdown[b-yrzddm0bfn] {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 2000;
    animation: dropdown-fade-in-b-yrzddm0bfn 0.2s ease-out;
}

@keyframes dropdown-fade-in-b-yrzddm0bfn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Layout/components/Notifications/NotificationsDropdown.razor.rz.scp.css */
.notif-list[b-uh5u2kalku] {
    background: var(--rz-base-50);
    border-radius: var(--rz-border-radius);
    box-shadow: var(--rz-overlay-shadow);
    border: var(--rz-overlay-border);
    width: 400px;
    max-width: 90vw;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

.notif-list[b-uh5u2kalku]::-webkit-scrollbar {
    width: 6px;
}

.notif-list[b-uh5u2kalku]::-webkit-scrollbar-track {
    background: transparent;
}

.notif-list[b-uh5u2kalku]::-webkit-scrollbar-thumb {
    background: var(--rz-base-400);
    border-radius: 3px;
}

.notif-list[b-uh5u2kalku]::-webkit-scrollbar-thumb:hover {
    background: var(--rz-base-500);
}

.notif-header[b-uh5u2kalku] {
    padding: 18px 20px;
    border-bottom: 1px solid var(--rz-base-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--rz-base-100);
    border-radius: var(--rz-border-radius) var(--rz-border-radius) 0 0;
}

.notif-header-title[b-uh5u2kalku] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rz-base-900);
}

.notif-view-all[b-uh5u2kalku] {
    background: var(--rz-primary-lighter);
    color: var(--rz-primary);
    border: none;
    padding: 8px 16px;
    border-radius: var(--rz-button-border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.notif-view-all:hover[b-uh5u2kalku] {
    background: var(--rz-primary-light);
    color: var(--rz-on-primary);
    transform: translateY(-1px);
}

.notif-empty[b-uh5u2kalku] {
    padding: 40px 20px;
    text-align: center;
    color: var(--rz-base-500);
}

.notif-empty-icon[b-uh5u2kalku] {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.5;
}

.notif-empty-text[b-uh5u2kalku] {
    font-size: 0.95rem;
}

.notif-item[b-uh5u2kalku] {
    padding: 16px 20px;
    border-bottom: 1px solid var(--rz-base-300);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.notif-item[b-uh5u2kalku]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.notif-item.severity-info[b-uh5u2kalku]::before {
    background: var(--rz-info);
}

.notif-item.severity-success[b-uh5u2kalku]::before {
    background: var(--rz-success);
}

.notif-item.severity-warning[b-uh5u2kalku]::before {
    background: var(--rz-warning);
}

.notif-item.severity-error[b-uh5u2kalku]::before {
    background: var(--rz-danger);
}

.notif-item:hover[b-uh5u2kalku] {
    background: var(--rz-primary-lighter);
    transform: translateX(2px);
}

.notif-item:last-child[b-uh5u2kalku] {
    border-bottom: none;
}

.notif-item.unread[b-uh5u2kalku] {
    background: var(--rz-primary-lighter);
}

.notif-item.unread[b-uh5u2kalku]::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--rz-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--rz-primary-lighter);
}

.notif-item.read[b-uh5u2kalku] {
    opacity: 0.75;
}

/* Pulse animation for new notifications */
.notif-pulse[b-uh5u2kalku] {
    animation: pulse-bg-b-uh5u2kalku 1.2s ease-in-out;
}

@keyframes pulse-bg-b-uh5u2kalku {

    0%,
    100% {
        background: var(--rz-primary-lighter);
    }

    50% {
        background: var(--rz-primary-light);
        opacity: 0.3;
    }
}

.notif-row[b-uh5u2kalku] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 6px;
}

.notif-title[b-uh5u2kalku] {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--rz-base-900);
    flex: 1;
    line-height: 1.4;
}

.notif-time[b-uh5u2kalku] {
    font-size: 0.75rem;
    color: var(--rz-base-500);
    white-space: nowrap;
    flex-shrink: 0;
}

.notif-message[b-uh5u2kalku] {
    font-size: 0.875rem;
    color: var(--rz-base-700);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-severity-badge[b-uh5u2kalku] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

.notif-severity-badge.severity-info[b-uh5u2kalku] {
    background: var(--rz-info-lighter);
    color: var(--rz-info);
}

.notif-severity-badge.severity-success[b-uh5u2kalku] {
    background: var(--rz-success-lighter);
    color: var(--rz-success);
}

.notif-severity-badge.severity-warning[b-uh5u2kalku] {
    background: var(--rz-warning-lighter);
    color: var(--rz-warning);
}

.notif-severity-badge.severity-error[b-uh5u2kalku] {
    background: var(--rz-danger-lighter);
    color: var(--rz-danger);
}
/* /Components/Layout/components/Notifications/NotificationSnackbar.razor.rz.scp.css */
.snackbar-container[b-nkhe6jovx1] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.snackbar[b-nkhe6jovx1] {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 480px;
    padding: 16px 20px;
    background: var(--rz-base-50);
    border-radius: var(--rz-border-radius);
    box-shadow: var(--rz-overlay-shadow);
    border: var(--rz-overlay-border);
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    border-left-width: 4px;
    border-left-style: solid;
}

.snackbar.show[b-nkhe6jovx1] {
    opacity: 1;
    transform: translateX(0);
}

.snackbar.severity-info[b-nkhe6jovx1] {
    border-left-color: var(--rz-info);
}

.snackbar.severity-success[b-nkhe6jovx1] {
    border-left-color: var(--rz-success);
}

.snackbar.severity-warning[b-nkhe6jovx1] {
    border-left-color: var(--rz-warning);
}

.snackbar.severity-error[b-nkhe6jovx1] {
    border-left-color: var(--rz-danger);
}

.snackbar-icon[b-nkhe6jovx1] {
    flex-shrink: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snackbar.severity-info .snackbar-icon[b-nkhe6jovx1] {
    color: var(--rz-info);
}

.snackbar.severity-success .snackbar-icon[b-nkhe6jovx1] {
    color: var(--rz-success);
}

.snackbar.severity-warning .snackbar-icon[b-nkhe6jovx1] {
    color: var(--rz-warning);
}

.snackbar.severity-error .snackbar-icon[b-nkhe6jovx1] {
    color: var(--rz-danger);
}

.snackbar-content[b-nkhe6jovx1] {
    flex: 1;
    min-width: 0;
}

.snackbar-title[b-nkhe6jovx1] {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--rz-base-900);
    margin-bottom: 4px;
    line-height: 1.4;
}

.snackbar-message[b-nkhe6jovx1] {
    font-size: 0.875rem;
    color: var(--rz-base-700);
    line-height: 1.5;
}

.snackbar-close[b-nkhe6jovx1] {
    flex-shrink: 0;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--rz-base-500);
    transition: all 0.2s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snackbar-close:hover[b-nkhe6jovx1] {
    background: var(--rz-base-200);
    color: var(--rz-base-700);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .snackbar-container[b-nkhe6jovx1] {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .snackbar[b-nkhe6jovx1] {
        min-width: auto;
        max-width: none;
    }
}
/* /Components/Main/Shared/Client/components/TreatmentPlan/components/components/UiStructure.razor.rz.scp.css */
[b-uiq2syzymw] .rz-tabview > .rz-tabview-nav
{
    display: none;
}
/* /Components/Main/Shared/Client/TreatmentPlanManagement.razor.rz.scp.css */
[b-acnuzk24a0] .rz-tabview > .rz-tabview-nav
{
    display: none;
}
/* /Components/Main/Shared/Notifications/AllNotifications.razor.rz.scp.css */
.filter-tabs[b-cuws538hjp] {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    background: white;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.filter-tab[b-cuws538hjp] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #7f8c8d;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-tab:hover[b-cuws538hjp] {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateY(-1px);
}

.filter-tab.active[b-cuws538hjp] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.notifications-container[b-cuws538hjp] {
    padding-right: 8px;
}

.notifications-grid[b-cuws538hjp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    padding-bottom: 20px;
}

.notification-card[b-cuws538hjp] {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.notification-card[b-cuws538hjp]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: all 0.3s ease;
}

.notification-card.severity-info[b-cuws538hjp]::before {
    background: #3498db;
}

.notification-card.severity-success[b-cuws538hjp]::before {
    background: #2ecc71;
}

.notification-card.severity-warning[b-cuws538hjp]::before {
    background: #f39c12;
}

.notification-card.severity-error[b-cuws538hjp]::before {
    background: #e74c3c;
}

.notification-card:hover[b-cuws538hjp] {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.notification-card.unread[b-cuws538hjp] {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, white 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.notification-card.read[b-cuws538hjp] {
    opacity: 0.75;
}

.card-indicator[b-cuws538hjp] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}

.card-icon[b-cuws538hjp] {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.notification-card.severity-info .card-icon[b-cuws538hjp] {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.notification-card.severity-success .card-icon[b-cuws538hjp] {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.notification-card.severity-warning .card-icon[b-cuws538hjp] {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.notification-card.severity-error .card-icon[b-cuws538hjp] {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.card-content[b-cuws538hjp] {
    flex: 1;
    min-width: 0;
}

.card-header[b-cuws538hjp] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.card-title[b-cuws538hjp] {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.card-time-wrapper[b-cuws538hjp] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.card-time[b-cuws538hjp] {
    font-size: 0.875rem;
    color: #95a5a6;
    white-space: nowrap;
}

.card-message[b-cuws538hjp] {
    font-size: 0.975rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 14px 0;
}

.card-footer[b-cuws538hjp] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.severity-badge[b-cuws538hjp],
.type-badge[b-cuws538hjp] {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.severity-badge.severity-info[b-cuws538hjp] {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.severity-badge.severity-success[b-cuws538hjp] {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.severity-badge.severity-warning[b-cuws538hjp] {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

.severity-badge.severity-error[b-cuws538hjp] {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.type-badge[b-cuws538hjp] {
    background: rgba(149, 165, 166, 0.1);
    color: #7f8c8d;
}

.unread-indicator[b-cuws538hjp] {
    width: 10px;
    height: 10px;
    background: #667eea;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    animation: pulse-dot-b-cuws538hjp 2s ease-in-out infinite;
}

@keyframes pulse-dot-b-cuws538hjp {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.loading-state[b-cuws538hjp],
.empty-state[b-cuws538hjp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.empty-icon[b-cuws538hjp] {
    font-size: 6rem;
    color: #ecf0f1;
    margin-bottom: 24px;
}

.empty-state h3[b-cuws538hjp] {
    font-size: 1.75rem;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.empty-state p[b-cuws538hjp] {
    font-size: 1.1rem;
    color: #95a5a6;
    margin: 0;
}

.loading-state p[b-cuws538hjp] {
    margin-top: 20px;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.load-more[b-cuws538hjp] {
    display: flex;
    justify-content: center;
    padding: 32px 0;
    grid-column: 1 / -1;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .filter-tabs[b-cuws538hjp] {
        background: #2c3e50;
    }

    .notification-card[b-cuws538hjp] {
        background: #2c3e50;
    }

    .notification-card.unread[b-cuws538hjp] {
        background: linear-gradient(90deg, rgba(102, 126, 234, 0.15) 0%, #2c3e50 100%);
    }

    .card-title[b-cuws538hjp] {
        color: #ecf0f1;
    }

    .card-message[b-cuws538hjp] {
        color: #bdc3c7;
    }

    .empty-state h3[b-cuws538hjp] {
        color: #ecf0f1;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .notifications-grid[b-cuws538hjp] {
        grid-template-columns: 1fr;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .filter-tabs[b-cuws538hjp] {
        gap: 6px;
        padding: 6px;
    }

    .filter-tab[b-cuws538hjp] {
        padding: 10px 12px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .filter-tab .rz-icon[b-cuws538hjp] {
        font-size: 1.1rem;
    }

    .notifications-grid[b-cuws538hjp] {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .notification-card[b-cuws538hjp] {
        padding: 16px;
        gap: 14px;
    }

    .card-icon[b-cuws538hjp] {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .card-title[b-cuws538hjp] {
        font-size: 1rem;
    }

    .card-message[b-cuws538hjp] {
        font-size: 0.9rem;
    }

    .card-time[b-cuws538hjp] {
        font-size: 0.8rem;
    }

    .severity-badge[b-cuws538hjp],
    .type-badge[b-cuws538hjp] {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .unread-indicator[b-cuws538hjp] {
        width: 8px;
        height: 8px;
    }

    .loading-state[b-cuws538hjp],
    .empty-state[b-cuws538hjp] {
        padding: 60px 20px;
    }

    .empty-icon[b-cuws538hjp] {
        font-size: 4rem;
    }

    .empty-state h3[b-cuws538hjp] {
        font-size: 1.25rem;
    }

    .empty-state p[b-cuws538hjp] {
        font-size: 0.95rem;
    }
}
/* /Components/Shared/components/CustomDropDown.razor.rz.scp.css */
[b-1pah0hu9np] .rz-form-field-end {
    padding-inline: 0;
}

[b-1pah0hu9np] .rz-dropdown-trigger-icon {
    width: var(--rz-dropdown-trigger-icon-width);
    height: var(--rz-dropdown-trigger-icon-height);
    font-size: var(--rz-dropdown-trigger-icon-height);
    margin-block: var(--rz-dropdown-trigger-icon-margin-block);
    margin-inline: var(--rz-dropdown-trigger-icon-margin-inline);
    cursor: default;
}
/* /Components/Shared/components/InterventionClasiffier.razor.rz.scp.css */
[b-7rk4c7nyg4] .rz-dropdown-trigger-icon {
    width: var(--rz-dropdown-trigger-icon-width);
    height: var(--rz-dropdown-trigger-icon-height);
    font-size: var(--rz-dropdown-trigger-icon-height);
    margin-block: var(--rz-dropdown-trigger-icon-margin-block);
    margin-inline: var(--rz-dropdown-trigger-icon-margin-inline);
    cursor: default;
}
/* /Components/Shared/components/MultiSelectTagComponent.razor.rz.scp.css */
[b-rbiay4r3ji] .rz-dropdown-trigger-icon {
    width: var(--rz-dropdown-trigger-icon-width);
    height: var(--rz-dropdown-trigger-icon-height);
    font-size: var(--rz-dropdown-trigger-icon-height);
    margin-block: var(--rz-dropdown-trigger-icon-margin-block);
    margin-inline: var(--rz-dropdown-trigger-icon-margin-inline);
    cursor: default;
}
