/* BTU Calculator Styles */

.concrete-diagram {
    min-height: 180px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.concrete-diagram svg {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.dimension-line {
    stroke: #052c65;
    stroke-width: 1.5;
    marker-end: url(#arrowhead);
}

.dimension-text {
    fill: #052c65;
    font-size: 11px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.annotation-text {
    fill: #dc3545;
    font-size: 11px;
    font-weight: 600;
}

/* Dark mode support */
[data-bs-theme="dark"] .concrete-diagram {
    background: linear-gradient(135deg, #1a1d23 0%, #2d3748 100%);
}

[data-bs-theme="dark"] .dimension-line {
    stroke: #90cdf4;
}

[data-bs-theme="dark"] .dimension-text {
    fill: #90cdf4;
}

[data-bs-theme="dark"] .annotation-text {
    fill: #fc8181;
}

