:root {
    --primary: #0A66C2;
    --bg-light: #F3F6F8;
}

body {
    background-color: var(--bg-light);
    font-family: "Segoe UI", system-ui, sans-serif;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #004182;
    border-color: #004182;
}

.metric-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #6c757d;
    letter-spacing: 0.05em;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.card {
    border-radius: 12px;
}

.progress-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.progress-analysis {
    height: 14px;
    border-radius: 999px;
    background: #e8f0fe;
    overflow: hidden;
}

.progress-analysis .progress-bar {
    background: linear-gradient(90deg, #0A66C2, #378FE9);
    border-radius: 999px;
    transition: width 0.4s ease;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

#progress-percent {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.progress-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
}

.progress-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.progress-steps li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.progress-steps li.done {
    color: #1f2937;
    font-weight: 500;
}

.progress-steps li.active {
    color: var(--primary);
    font-weight: 600;
}

.progress-steps li i {
    font-size: 1rem;
    width: 1.1rem;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
    display: inline-block;
}
