<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Sidebar Styles - Following our Phase 4 incremental approach */

/* Left Navigation Sidebar */
.nav-sidebar {
    width: 280px;
    background-color: #1a202c;
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    height: 100vh;
    position: relative;
}

.nav-sidebar-top {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-chat-button {
    width: 100%;
    padding: 12px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.new-chat-button:hover {
    background-color: #1d4ed8;
}

.history-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.history-category {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 16px 0 8px;
    padding-left: 8px;
    letter-spacing: 0.5px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.history-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.history-item.active {
    background-color: rgba(255, 255, 255, 0.15);
}

.history-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.history-content {
    flex: 1;
    overflow: hidden;
}

.history-title {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-sidebar-bottom {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-container {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.avatar-container:hover .avatar-overlay {
    opacity: 1;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
}

.user-menu {
    display: flex;
    align-items: center;
}

.logout-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.logout-button:hover {
    color: white;
}

.settings-button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.settings-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Right Information Sidebar */
.info-sidebar {
    width: 280px;
    background-color: #f8fafc;
    border-left: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 10;
}

.info-sidebar-section {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.info-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}

.dashboard-menu h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1e293b;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #64748b;
    transition: all 0.2s ease;
}

.dashboard-nav-item:hover {
    background-color: #f1f5f9;
    color: #334155;
}

.dashboard-nav-item.active {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.dashboard-nav-item i {
    width: 20px;
    text-align: center;
}

/* Case Information Styles */
.case-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.case-info-label {
    color: #64748b;
}

.case-info-value {
    font-weight: 500;
    color: #334155;
}

/* Potential Codes Styles */
.code-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.code-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background-color: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.code-badge {
    background-color: #e0e7ff;
    color: #4f46e5;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
}

.code-description {
    font-size: 13px;
    color: #334155;
    flex: 1;
}

.code-confidence {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.confidence-high {
    background-color: #dcfce7;
    color: #16a34a;
}

.confidence-medium {
    background-color: #fef9c3;
    color: #ca8a04;
}

.confidence-low {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Empty state styling */
.history-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.history-empty-icon {
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.history-empty-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.history-empty-subtext {
    font-size: 12px;
    opacity: 0.7;
}

/* Sample case styling in history list */
.history-item.sample-case {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
}

.history-item.sample-case .history-icon {
    color: #e6a100;
}

.history-item.sample-case:hover {
    background-color: rgba(255, 193, 7, 0.2);
}
</pre></body></html>