.ts-tracking {
    background: #ffffff;
    border: 1px solid #e1e6ec;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(20, 32, 45, 0.08);
    color: #17202a;
    font-family: inherit;
    margin: 0 auto;
    max-width: 820px;
    padding: 30px;
}

.ts-tracking * {
    box-sizing: border-box;
}

.ts-tracking__header {
    margin-bottom: 22px;
    text-align: center;
}

.ts-tracking__header p {
    color: #166b5b;
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.ts-tracking__header h2 {
    color: #111827;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0;
}

.ts-tracking__form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ts-tracking label {
    color: #1f2937;
    display: grid;
    font-size: 15px;
    gap: 7px;
    margin-bottom: 14px;
}

.ts-tracking input {
    background: #ffffff;
    border: 1px solid #cfd8e3;
    border-radius: 14px;
    color: #111827;
    font: inherit;
    font-size: 16px;
    font-weight: 800;
    min-height: 52px;
    padding: 12px 14px;
    width: 100%;
}

.ts-tracking input:focus {
    border-color: #166b5b;
    box-shadow: 0 0 0 3px rgba(22, 107, 91, 0.14);
    outline: none;
}

.ts-tracking__button {
    background: linear-gradient(90deg, #18b66d 0%, #1580d8 100%);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    grid-column: 1 / -1;
    letter-spacing: 1px;
    min-height: 52px;
    padding: 14px 24px;
    text-transform: uppercase;
}

.ts-tracking__result {
    background: #f4fbf8;
    border: 1px solid #c9eadf;
    border-radius: 18px;
    color: #12382f;
    margin-top: 20px;
    padding: 20px;
}

.ts-tracking__result--error {
    background: #fff6f2;
    border-color: #f3c7b3;
    color: #8a3418;
    font-weight: 900;
}

.ts-tracking__result h3 {
    color: #111827;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 10px;
}

.ts-tracking__timeline {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.ts-tracking__timeline li {
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 14px;
    color: #657183;
    font-weight: 900;
    padding: 12px 14px 12px 42px;
    position: relative;
}

.ts-tracking__timeline li::before {
    background: #c4ced9;
    border-radius: 999px;
    content: "";
    height: 14px;
    left: 16px;
    position: absolute;
    top: 16px;
    width: 14px;
}

.ts-tracking__timeline .ts-tracking__step--done {
    border-color: #8ed5bd;
    color: #12382f;
}

.ts-tracking__timeline .ts-tracking__step--done::before {
    background: #18b66d;
}

.ts-tracking__timeline .ts-tracking__step--active {
    border-color: #1580d8;
    box-shadow: 0 0 0 3px rgba(21, 128, 216, 0.12);
    color: #102a3d;
}

.ts-tracking__note {
    background: #fff7df;
    border: 1px solid #f2d179;
    border-radius: 14px;
    color: #4b3a06;
    font-weight: 900;
    margin: 18px 0 0;
    padding: 14px;
}

@media (max-width: 720px) {
    .ts-tracking {
        border-radius: 18px;
        padding: 18px;
    }

    .ts-tracking__form {
        grid-template-columns: 1fr;
    }

    .ts-tracking__header h2 {
        font-size: 28px;
    }
}
