/* ============================================
   Iconos SVG - Estilos Generales
   ============================================ */

/* Iconos en filtros */
.filter-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

/* Iconos en badges de tipo */
.type-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    display: inline-block;
    vertical-align: middle;
}

/* Iconos de tema como SVG inline */
.theme-icon-svg {
    width: 24px;
    height: 24px;
    fill: white;
    display: block;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.theme-icon-svg.changing {
    opacity: 0;
}

/* Animaciones */
.theme-toggle:hover .theme-icon-svg {
    transform: rotate(180deg);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .filter-icon {
        width: 18px;
        height: 18px;
    }
    
    .type-icon {
        width: 14px;
        height: 14px;
    }
}
