body {
    font-family: 'Inter', sans-serif;
}
.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
    color: #d1d5db;
}
.sidebar-link:hover, .sidebar-link.active {
    background-color: #374151;
    color: white;
}
.sidebar-link svg {
    margin-right: 0.75rem;
}
.kpi-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.mitre-phase {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.mitre-phase.completed { background-color: #d1fae5; color: #065f46; }
.mitre-phase.in-progress { background-color: #ffedd5; color: #9a3412; }
.mitre-phase.pending { background-color: #e5e7eb; color: #4b5563; }
.mitre-arrow {
    color: #9ca3af;
    margin: 0 0.5rem;
    flex-shrink: 0;
}
.status-dot {
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 9999px;
    display: inline-block;
    margin-right: 0.5rem;
}
