:root {
    --knx-tcvr-primary: #0ea5e9;
    --knx-tcvr-bg: linear-gradient(135deg, #ffffff, #f8fafc);
    --knx-tcvr-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.knx-tcvr-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Inter', system-ui, sans-serif;
    padding: 24px;
    background: var(--knx-tcvr-bg);
}

.knx-tcvr-section {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--knx-tcvr-shadow);
}

.knx-tcvr-section__title {
    font-size: 1.5rem;
    color: var(--knx-tcvr-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.knx-tcvr-component {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.knx-tcvr-component__title {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.knx-tcvr-process__step {
    display: flex;
    align-items: center;
    margin: 12px 0;
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.knx-tcvr-process__number {
    background: var(--knx-tcvr-primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.knx-tcvr-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.knx-tcvr-specs__item {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 8px;
}