<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Navigation Menu Styles
 * Streamlined navigation structure for ClaimCodeMD
 */

.nav-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-y: auto;
    flex: 1;
}

.nav-section {
    margin-bottom: 20px;
    width: 100%;
}

.nav-section-title {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin: 16px 0 8px;
    padding-left: 16px;
    font-weight: 500;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    border-radius: 4px;
    margin: 2px 8px;
    transition: background-color 0.2s ease;
}

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

.nav-item.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-item i {
    margin-right: 12px;
    width: 16px;
    text-align: center;
    color: #10b981;
}

.nav-item span {
    flex: 1;
}

/* Updated history item styles */
.history-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 4px;
    margin: 2px 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

/* Mobile optimizations */
@media (max-width: 768px) {
    .nav-item {
        padding: 12px 16px;
    }
    
    .history-item {
        padding: 12px 16px;
    }
}
</pre></body></html>