.panel-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contracts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contract-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

.contract-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.contract-org {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.contract-contact {
    font-size: .875rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

.contract-id {
    font-size: .75rem;
    color: #9ca3af;
    white-space: nowrap;
}

/* Barre de progression */
.progress-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin: 1rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.progress-step.done:not(:last-child)::after {
    background: #22c55e;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: #9ca3af;
    position: relative;
    z-index: 1;
    transition: all .2s;
}

.progress-step.done .step-dot {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.progress-step.current .step-dot {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .2);
}

.step-label {
    margin-top: .4rem;
    font-size: .68rem;
    color: #9ca3af;
    text-align: center;
    max-width: 80px;
    line-height: 1.2;
}

.progress-step.done .step-label,
.progress-step.current .step-label {
    color: var(--text-main);
    font-weight: 500;
}

.contract-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.empty-state .material-symbols-outlined {
    font-size: 3rem;
    color: var(--border-color);
    display: block;
    margin-bottom: 1rem;
}

.empty-state-btn {
    margin-top: 1rem;
}

.step-dot-icon {
    font-size: 14px;
}