/* Paint Calculator Styles */

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

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

.wall-fill {
    fill: #e8eaed;
    stroke: #6c757d;
    stroke-width: 2;
}

.floor-fill {
    fill: #c3cfe2;
}

.door-fill {
    fill: #8b5a3c;
    stroke: #6d4c3a;
    stroke-width: 1.5;
}

.window-fill {
    fill: #90cdf4;
    stroke: #4299e1;
    stroke-width: 1.5;
    opacity: 0.7;
}

.paint-can {
    fill: #dc3545;
    stroke: #c82333;
    stroke-width: 2;
}

.paint-brush {
    fill: #ffc107;
    stroke: #e0a800;
    stroke-width: 1.5;
}

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

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

.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"] .paint-diagram-container {
    background: linear-gradient(135deg, #1a1d23 0%, #2d3748 100%);
}

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

[data-bs-theme="dark"] .floor-fill {
    fill: #2d3748;
}

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

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

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

