:root {
    --wms-orange: #ef7d32;
    --wms-orange-soft: #fff0e4;
    --wms-green: #21826e;
    --wms-green-soft: #e6f4ef;
    --wms-blue-soft: #e8f1ff;
    --wms-page: #eef3f7;
    --wms-dark: #2f4050;
}

body {
    background: var(--wms-page);
    color: var(--wms-dark);
}

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.module-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.bg-orange-soft {
    background: var(--wms-orange-soft);
}

.bg-green-soft {
    background: var(--wms-green-soft);
}

.bg-blue-soft {
    background: var(--wms-blue-soft);
}

.text-orange {
    color: var(--wms-orange);
}

.text-green {
    color: var(--wms-green);
}

.upload-dropzone {
    border: 2px dashed #b7c6d1;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    background: #f8fbfd;
}

.mock-document {
    border: 1px solid #dbe4ea;
    border-radius: 12px;
    padding: 1rem;
    background: #ffffff;
}

.metric-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 20px rgba(47, 64, 80, 0.08);
}

.metric-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.metric-label {
    display: block;
    color: #748796;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.table-search {
    width: 260px;
}

.step-list {
    list-style: none;
    padding-left: 0;
}

.step-list li {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1rem;
    color: #7a8d9a;
}

.step-list li::before {
    content: "";
    position: absolute;
    left: 0.35rem;
    top: 0.2rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #c8d4dd;
}

.step-list li::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 1rem;
    bottom: 0;
    width: 2px;
    background: #d8e1e8;
}

.step-list li:last-child::after {
    display: none;
}

.step-list li.done {
    color: #21826e;
    font-weight: 600;
}

.step-list li.done::before {
    background: #21826e;
}

.step-list li.active {
    color: #0d6efd;
    font-weight: 700;
}

.step-list li.active::before {
    background: #0d6efd;
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
    }

    .table-search {
        width: 100%;
    }
}