/* Стили для иконки роста в зависимости от темы */

/* Светлая тема - темные элементы становятся черными */
[data-theme="light"] .growth-icon svg path[fill="#18c4ff"] {
    fill: #000000 !important;
}

[data-theme="light"] .growth-icon svg circle[fill="#18c4ff"] {
    fill: #000000 !important;
}

[data-theme="light"] .growth-icon svg g[fill="#18c4ff"] path {
    fill: #000000 !important;
}

/* Темная тема - оставляем оригинальные цвета */
[data-theme="dark"] .growth-icon svg path[fill="#18c4ff"] {
    fill: #18c4ff !important;
}

[data-theme="dark"] .growth-icon svg circle[fill="#18c4ff"] {
    fill: #18c4ff !important;
}

[data-theme="dark"] .growth-icon svg g[fill="#18c4ff"] path {
    fill: #18c4ff !important;
}

/* Общие стили для иконки */
.growth-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.growth-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
} 