/* Insulation Calculator Styles */

.insulation-diagram-container {
    min-height: 180px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insulation-diagram-container svg {
    filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.15));
    max-width: 100%;
    height: auto;
}

.wall-fill {
    fill: #e0e0e0;
}

.insulation-fill {
    fill: #ffd700;
    opacity: 0.7;
}

.stud-fill {
    fill: #8b6f47;
}

.label-text {
    fill: #495057;
    font-size: 10px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

[data-bs-theme="dark"] .wall-fill {
    fill: #4a5568;
}

[data-bs-theme="dark"] .insulation-fill {
    fill: #f6ad55;
}

[data-bs-theme="dark"] .stud-fill {
    fill: #9c6644;
}

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

