.tz-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz-result {
    margin-top: 1.5rem;
}

.tz-main-card {
    padding: 1.4rem;
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    text-align: center;
}

.tz-main-label {
    font-size: 0.92rem;
    color: #2563eb;
    margin-bottom: 0.4rem;
}

.tz-main-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1d4ed8;
    line-height: 1.2;
}

.tz-main-status {
    margin-top: 0.6rem;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.tz-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tz-detail-item {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.tz-detail-item span {
    display: block;
    margin-bottom: 0.45rem;
    color: #64748b;
    font-size: 0.9rem;
}

.tz-detail-item strong {
    color: #0f172a;
    font-size: 1rem;
}

.tz-advice {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    line-height: 1.8;
}

.tz-sub-tools {
    margin-top: 2rem;
}

.tz-article p {
    margin: 0 0 1rem;
    color: #4b5563;
    line-height: 1.9;
}

.tz-table-wrap {
    margin-top: 1.2rem;
    overflow-x: auto;
}

.tz-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.tz-table th,
.tz-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.tz-table th {
    background: #f8fafc;
    color: #1e293b;
    font-weight: 600;
}

.tz-table td {
    color: #475569;
}

.tz-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 640px) {
    .tz-form,
    .tz-detail-grid {
        grid-template-columns: 1fr;
    }

    .tz-main-value {
        font-size: 1.5rem;
    }
}
