/* /Components/Conversational/AgentActivationBubble.razor.rz.scp.css */
.agent-activation-bubble[b-06wjkai1ac] {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 12px;
    margin: 8px 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.activation-header[b-06wjkai1ac] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.activation-actions[b-06wjkai1ac] {
    display: flex;
    gap: 4px;
}

.activation-content[b-06wjkai1ac] {
    margin-bottom: 8px;
}

.section-title[b-06wjkai1ac] {
    font-weight: 600;
    margin-bottom: 4px;
    color: #495057;
}

.tool-calls-section[b-06wjkai1ac],
.tool-results-section[b-06wjkai1ac],
.text-messages-section[b-06wjkai1ac] {
    margin-bottom: 8px;
}

.tool-call-item[b-06wjkai1ac] {
    margin: 4px 0;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.tool-call-header[b-06wjkai1ac] {
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    transition: background-color 0.2s ease;
}

.tool-call-header:hover[b-06wjkai1ac] {
    background-color: #f8f9fa;
}

.tool-call-details[b-06wjkai1ac] {
    padding: 8px;
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.tool-call-arguments[b-06wjkai1ac],
.tool-result-details[b-06wjkai1ac] {
    margin-bottom: 12px;
}

.tool-call-arguments:last-child[b-06wjkai1ac],
.tool-result-details:last-child[b-06wjkai1ac] {
    margin-bottom: 0;
}

.detail-title[b-06wjkai1ac] {
    font-weight: 600;
    margin-bottom: 4px;
    color: #495057;
}

/* JSON content styling now handled by JsonTreeViewer component */

.tool-result-pending[b-06wjkai1ac] {
    margin-top: 8px;
    padding: 8px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
}

.pending-text[b-06wjkai1ac] {
    color: #856404;
    font-style: italic;
}

.plugin-name[b-06wjkai1ac] {
    margin-top: 2px;
    color: #6c757d;
    font-style: italic;
}

.no-content[b-06wjkai1ac] {
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 12px;
}

.activation-footer[b-06wjkai1ac] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #6c757d;
}

.activation-time[b-06wjkai1ac] {
    color: #6c757d;
}

.debug-info-section[b-06wjkai1ac] {
    margin-top: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.debug-row[b-06wjkai1ac] {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    gap: 8px;
}

.debug-row .label[b-06wjkai1ac] {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.debug-row .value[b-06wjkai1ac] {
    color: #6c757d;
    font-family: 'Courier New', monospace;
    flex-grow: 1;
}

/* JSON styling now handled by JsonTreeViewer component */

/* Responsive adjustments */
@media (max-width: 768px) {
    .agent-activation-bubble[b-06wjkai1ac] {
        max-width: 95%;
        margin: 4px 0;
        padding: 8px;
    }
    
    .activation-header[b-06wjkai1ac] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .activation-footer[b-06wjkai1ac] {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}
/* /Components/Conversational/JsonTreeViewer.razor.rz.scp.css */
.json-tree-viewer[b-527a4y8y8q] {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.json-empty[b-527a4y8y8q] {
    color: #6c757d;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.json-object[b-527a4y8y8q],
.json-array[b-527a4y8y8q] {
    margin: 2px 0;
}

.json-object-header[b-527a4y8y8q],
.json-array-header[b-527a4y8y8q] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin: 2px 0;
    transition: background-color 0.2s ease;
}

.json-object-header:hover[b-527a4y8y8q],
.json-array-header:hover[b-527a4y8y8q] {
    background-color: #dee2e6;
}

.json-toggle[b-527a4y8y8q] {
    font-size: 0.7rem;
    color: #6c757d;
    width: 12px;
    text-align: center;
    user-select: none;
}

.json-brace[b-527a4y8y8q],
.json-bracket[b-527a4y8y8q] {
    color: #007bff;
    font-weight: bold;
}

.json-count[b-527a4y8y8q] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.7rem;
}

.json-object-content[b-527a4y8y8q],
.json-array-content[b-527a4y8y8q] {
    margin-left: 16px;
    border-left: 2px solid #e9ecef;
    padding-left: 8px;
}

.json-property[b-527a4y8y8q],
.json-array-item[b-527a4y8y8q] {
    margin: 2px 0;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    flex-wrap: wrap;
}

.json-property-name[b-527a4y8y8q] {
    color: #e83e8c;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.json-property-name:hover[b-527a4y8y8q] {
    color: #d63384;
    text-decoration: underline;
}

.json-array-index[b-527a4y8y8q] {
    color: #fd7e14;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.json-array-index:hover[b-527a4y8y8q] {
    color: #e55a00;
    text-decoration: underline;
}

.json-colon[b-527a4y8y8q] {
    color: #333;
    font-weight: bold;
}

.json-value[b-527a4y8y8q] {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 2px 4px;
    border-radius: 3px;
    display: inline-block;
}

.json-value:hover[b-527a4y8y8q] {
    background-color: #fff3cd;
}

.json-string[b-527a4y8y8q] {
    color: #28a745;
}

.json-number[b-527a4y8y8q] {
    color: #007bff;
}

.json-boolean[b-527a4y8y8q] {
    color: #dc3545;
}

.json-null[b-527a4y8y8q] {
    color: #6c757d;
    font-style: italic;
}

.json-empty-object[b-527a4y8y8q],
.json-empty-array[b-527a4y8y8q] {
    color: #6c757d;
    font-style: italic;
}

.json-brace-closing[b-527a4y8y8q],
.json-bracket-closing[b-527a4y8y8q] {
    margin-top: 4px;
}

.json-truncated[b-527a4y8y8q] {
    color: #6c757d;
    font-style: italic;
    padding: 8px;
    background-color: #fff3cd;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
}

.json-error[b-527a4y8y8q] {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 8px;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .json-tree-viewer[b-527a4y8y8q] {
        font-size: 0.7rem;
        padding: 8px;
        max-height: 300px;
    }
    
    .json-object-content[b-527a4y8y8q],
    .json-array-content[b-527a4y8y8q] {
        margin-left: 12px;
        padding-left: 6px;
    }
    
    .json-property[b-527a4y8y8q],
    .json-array-item[b-527a4y8y8q] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .json-property-name[b-527a4y8y8q],
    .json-array-index[b-527a4y8y8q] {
        margin-bottom: 2px;
    }
}
/* /Components/Conversational/MessageBubble.razor.rz.scp.css */
/* Reply Reference Styles */
.reply-reference[b-ndeqgapfip] {
    background-color: rgba(0, 0, 0, 0.05);
    border-left: 3px solid #007bff;
    border-radius: 4px;
    padding: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.reply-indicator[b-ndeqgapfip] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.reply-icon[b-ndeqgapfip] {
    color: #007bff;
    font-size: 16px;
}

.reply-text[b-ndeqgapfip] {
    color: #6c757d;
    font-weight: 500;
}

.reply-to-message[b-ndeqgapfip] {
    margin-left: 20px;
}

.reply-message-text[b-ndeqgapfip] {
    color: #495057;
    font-style: italic;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.reply-message-preview[b-ndeqgapfip] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.quick-reply-content[b-ndeqgapfip] {
    font-weight: 500;
    padding: 8px 12px;
    background-color: #e3f2fd;
    border-radius: 18px;
    border: 1px solid #bbdefb;
    display: inline-block;
    color: #1976d2;
}

/* Dark theme adjustments */
.dark .reply-reference[b-ndeqgapfip] {
    background-color: rgba(255, 255, 255, 0.1);
    border-left-color: #4dabf7;
}

.dark .reply-text[b-ndeqgapfip] {
    color: #adb5bd;
}

.dark .reply-message-text[b-ndeqgapfip] {
    color: #e9ecef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reply-message-text[b-ndeqgapfip] {
        max-width: 150px;
    }
    
    .reply-reference[b-ndeqgapfip] {
        padding: 6px;
        margin-bottom: 6px;
    }
}

/* Message bubble specific adjustments */
.message-bubble .reply-reference[b-ndeqgapfip] {
    margin: 4px 0;
    border-radius: 6px;
}

/* Outbound message reply styling */
.message-outer-wrapper.outbound .reply-reference[b-ndeqgapfip] {
    border-left-color: #28a745;
}

.message-outer-wrapper.outbound .reply-icon[b-ndeqgapfip] {
    color: #28a745;
}

/* Inbound message reply styling */
.message-outer-wrapper.inbound .reply-reference[b-ndeqgapfip] {
    border-left-color: #007bff;
}

.message-outer-wrapper.inbound .reply-icon[b-ndeqgapfip] {
    color: #007bff;
}

/* Audio Transcription Styles */
.audio-transcription[b-ndeqgapfip] {
    margin-top: 8px;
    padding: 10px 12px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border-left: 3px solid #1976d2;
}

.transcription-header[b-ndeqgapfip] {
    display: flex;
    align-items: center;
    color: #1976d2;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.transcription-label[b-ndeqgapfip] {
    opacity: 0.9;
}

.transcription-text[b-ndeqgapfip] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.audio-transcription-only[b-ndeqgapfip] {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Dark theme adjustments for transcription */
.dark .audio-transcription[b-ndeqgapfip] {
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: #4dabf7;
}

.dark .transcription-header[b-ndeqgapfip] {
    color: #4dabf7;
}

.dark .transcription-text[b-ndeqgapfip] {
    color: #e9ecef;
}

.dark .audio-transcription-only[b-ndeqgapfip] {
    color: #adb5bd;
}

/* Outbound message transcription styling */
.message-outer-wrapper.outbound .audio-transcription[b-ndeqgapfip] {
    border-left-color: #28a745;
}

.message-outer-wrapper.outbound .transcription-header[b-ndeqgapfip] {
    color: #28a745;
}

/* Incoming Phone Call Styles */
.incoming-call-message[b-ndeqgapfip] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 12px;
    border: 1px solid #a5d6a7;
    min-width: 280px;
}

.call-icon-container[b-ndeqgapfip] {
    flex-shrink: 0;
}

.call-ring-animation[b-ndeqgapfip] {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4caf50;
    border-radius: 50%;
    animation: pulse-ring-b-ndeqgapfip 1.5s ease-out infinite;
}

.call-ring-animation[b-ndeqgapfip]::before,
.call-ring-animation[b-ndeqgapfip]::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #4caf50;
    animation: ring-wave-b-ndeqgapfip 1.5s ease-out infinite;
}

.call-ring-animation[b-ndeqgapfip]::after {
    animation-delay: 0.5s;
}

@keyframes pulse-ring-b-ndeqgapfip {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ring-wave-b-ndeqgapfip {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.call-icon[b-ndeqgapfip] {
    color: white;
    z-index: 1;
}

.call-details[b-ndeqgapfip] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.call-header[b-ndeqgapfip] {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #2e7d32;
    font-size: 0.95rem;
}

.call-label[b-ndeqgapfip] {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.caller-info[b-ndeqgapfip],
.receiver-info[b-ndeqgapfip] {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #455a64;
}

.caller-label[b-ndeqgapfip],
.receiver-label[b-ndeqgapfip] {
    margin-right: 6px;
    color: #78909c;
    font-weight: 500;
}

.caller-number[b-ndeqgapfip],
.receiver-number[b-ndeqgapfip] {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    color: #37474f;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Phone Call Transcription Styles */
.transcription-message[b-ndeqgapfip] {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    min-width: 200px;
    max-width: 400px;
}

.transcription-message.ai-response[b-ndeqgapfip] {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #90caf9;
}

.transcription-message.caller-speech[b-ndeqgapfip] {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border: 1px solid #e0e0e0;
}

.transcription-speaker-icon[b-ndeqgapfip] {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.ai-avatar[b-ndeqgapfip] {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%) !important;
}

.caller-avatar[b-ndeqgapfip] {
    background: linear-gradient(135deg, #78909c 0%, #607d8b 100%) !important;
}

.transcription-content[b-ndeqgapfip] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transcription-speaker-label[b-ndeqgapfip] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-name.ai[b-ndeqgapfip] {
    color: #1565c0;
}

.speaker-name.caller[b-ndeqgapfip] {
    color: #546e7a;
}

.transcription-text-content[b-ndeqgapfip] {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Dark theme adjustments for phone call messages */
.dark .incoming-call-message[b-ndeqgapfip] {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    border-color: #388e3c;
}

.dark .call-header[b-ndeqgapfip] {
    color: #a5d6a7;
}

.dark .caller-info[b-ndeqgapfip],
.dark .receiver-info[b-ndeqgapfip] {
    color: #c8e6c9;
}

.dark .caller-label[b-ndeqgapfip],
.dark .receiver-label[b-ndeqgapfip] {
    color: #81c784;
}

.dark .caller-number[b-ndeqgapfip],
.dark .receiver-number[b-ndeqgapfip] {
    background-color: rgba(0, 0, 0, 0.3);
    color: #e8f5e9;
}

.dark .transcription-message.ai-response[b-ndeqgapfip] {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    border-color: #1976d2;
}

.dark .transcription-message.caller-speech[b-ndeqgapfip] {
    background: linear-gradient(135deg, #37474f 0%, #455a64 100%);
    border-color: #546e7a;
}

.dark .speaker-name.ai[b-ndeqgapfip] {
    color: #90caf9;
}

.dark .speaker-name.caller[b-ndeqgapfip] {
    color: #b0bec5;
}

.dark .transcription-text-content[b-ndeqgapfip] {
    color: #eceff1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .incoming-call-message[b-ndeqgapfip] {
        flex-direction: column;
        text-align: center;
        min-width: 200px;
    }
    
    .call-details[b-ndeqgapfip] {
        align-items: center;
    }
    
    .transcription-message[b-ndeqgapfip] {
        max-width: 300px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-vto1pvy2qv] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-vto1pvy2qv] {
    flex: 1;
}

.sidebar[b-vto1pvy2qv] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-vto1pvy2qv] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-vto1pvy2qv]  a, .top-row[b-vto1pvy2qv]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-vto1pvy2qv]  a:hover, .top-row[b-vto1pvy2qv]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-vto1pvy2qv]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-vto1pvy2qv] {
        justify-content: space-between;
    }

    .top-row[b-vto1pvy2qv]  a, .top-row[b-vto1pvy2qv]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-vto1pvy2qv] {
        flex-direction: row;
    }

    .sidebar[b-vto1pvy2qv] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-vto1pvy2qv] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-vto1pvy2qv]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-vto1pvy2qv], article[b-vto1pvy2qv] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ungfg7rmn3] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-ungfg7rmn3] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ungfg7rmn3] {
    font-size: 1.1rem;
}

.bi[b-ungfg7rmn3] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ungfg7rmn3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ungfg7rmn3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ungfg7rmn3] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ungfg7rmn3] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ungfg7rmn3] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ungfg7rmn3] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ungfg7rmn3]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-ungfg7rmn3]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ungfg7rmn3]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ungfg7rmn3] {
        display: none;
    }

    .collapse[b-ungfg7rmn3] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-ungfg7rmn3] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
