/* Tile Calculator Styles */

.tile-diagram {
    min-height: 200px;
    background: linear-gradient(135deg, #fff8dc 0%, #f5e6d3 100%);
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.tile-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: 10px;
    font-weight: 600;
}

.grout-text {
    fill: #28a745;
    font-size: 8px;
    font-weight: 600;
}

/* Dark mode support */
[data-bs-theme="dark"] .tile-diagram {
    background: linear-gradient(135deg, #2d2416 0%, #3a3024 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;
}

[data-bs-theme="dark"] .grout-text {
    fill: #68d391;
}

