/* Gear Ratio Calculator Styles */

.gear-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;
}

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

.gear-fill {
    fill: #6c757d;
}

.gear-teeth {
    fill: #495057;
}

.rotation-arrow {
    stroke: #0d6efd;
    stroke-width: 2;
}

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

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

[data-bs-theme="dark"] .gear-teeth {
    fill: #718096;
}

[data-bs-theme="dark"] .rotation-arrow {
    stroke: #63b3ed;
}

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

