/* UTC时间转换专属样式 */

.utc-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
}

.utc-tab {
    padding: 0.6rem 1.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.utc-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    font-weight: 600;
}

.utc-tab:hover {
    color: #2563eb;
}

.utc-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8faff;
    border: 1px solid #dbeafe;
    border-radius: 8px;
}

.utc-res-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e8f0fe;
    font-size: 0.95rem;
}

.utc-res-row:last-child {
    border-bottom: none;
}

.utc-res-row.highlight .utc-res-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
}

.utc-res-label {
    color: #666;
    flex-shrink: 0;
}

.utc-res-val {
    font-weight: 600;
    color: #333;
    font-family: 'Fira Code', monospace;
}

/* 对照表 */
.tz-table-wrap {
    overflow-x: auto;
}

.tz-ref-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tz-ref-table th {
    background: #f5f5f5;
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    white-space: nowrap;
}

.tz-ref-table td {
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-family: 'Fira Code', monospace;
    font-size: 0.88rem;
}

.tz-ref-table tr:hover td {
    background: #fafafa;
}
